diff --git a/PKGBUILD b/PKGBUILD
index 0d036fb..0e702eb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@ sha256sums=('SKIP')
source=("git+https://code.edgarpierre.fr/edpibu/desktop.git")
pkgver() {
- cd "$pkgname%-git"
+ cd "${pkgname%-git}"
git describe --tags | sed -e"s/^v//"
}
package() {
diff --git a/icons/LICENSE b/icons/LICENSE
index f49a4e1..dc7232a 100644
--- a/icons/LICENSE
+++ b/icons/LICENSE
@@ -1,3 +1,7 @@
+The icons in this folder are adapted from remixicon, licensed under the Apache License.
+
+---
+
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
diff --git a/icons/microsoft.svg b/icons/microsoft.svg
index e33f6a2..b010d53 100644
--- a/icons/microsoft.svg
+++ b/icons/microsoft.svg
@@ -1 +1,25 @@
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/icons/restart.svg b/icons/restart.svg
new file mode 100644
index 0000000..13233ad
--- /dev/null
+++ b/icons/restart.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/icons/shutdown.svg b/icons/shutdown.svg
new file mode 100644
index 0000000..2a62d42
--- /dev/null
+++ b/icons/shutdown.svg
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/reboot.desktop b/src/reboot.desktop
new file mode 100644
index 0000000..96bae73
--- /dev/null
+++ b/src/reboot.desktop
@@ -0,0 +1,5 @@
+[Desktop Entry]
+Type=Application
+Name=Reboot
+Exec=/usr/bin/systemctl reboot
+Icon=restart
\ No newline at end of file
diff --git a/src/shutdown.desktop b/src/shutdown.desktop
new file mode 100644
index 0000000..0dd63cb
--- /dev/null
+++ b/src/shutdown.desktop
@@ -0,0 +1,5 @@
+[Desktop Entry]
+Type=Application
+Name=Shutdown
+Exec=/usr/bin/systemctl poweroff
+Icon=shutdown
\ No newline at end of file