aboutsummaryrefslogtreecommitdiff
path: root/scripts/.scripts/power.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/.scripts/power.sh')
-rwxr-xr-xscripts/.scripts/power.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/.scripts/power.sh b/scripts/.scripts/power.sh
new file mode 100755
index 0000000..8722719
--- /dev/null
+++ b/scripts/.scripts/power.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+
+CHOICES="poweroff\nreboot"
+
+CHOICE=$(echo -e $CHOICES | dmenu -l 3)
+
+systemctl $CHOICE
+
+
+
+