summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2022-06-13 15:12:09 -0500
committerGitHub <noreply@github.com>2022-06-13 15:12:09 -0500
commitfc9cf93843928355a81fd96532e5b7611eaec37e (patch)
treed1dbe00d47b4e7abbf0a3bf44f9f3de8e313fc6b /scripts
parentdd869c66c779f1d74de3fce012415ea61d8a8bed (diff)
Delete scripts directory
Diffstat (limited to 'scripts')
-rw-r--r--scripts/powermenu8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/powermenu b/scripts/powermenu
deleted file mode 100644
index 027d513..0000000
--- a/scripts/powermenu
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-case "$(echo "Poweroff \nReboot ﰇ\nSuspend ⏾\nCancel ﰸ" | dmenu)" in
- "Poweroff ") sudo poweroff ;;
- "Reboot ﰇ") sudo reboot ;;
- "Suspend ⏾") sudo ZZZ -z ;;
- "Cancel ﰸ") exit ;;
- *) exit ;;
-esac