Adding my scripts.

This commit is contained in:
CronyAkatsuki 2021-03-13 18:09:41 +01:00
parent 6f51cebd29
commit 9e3b9cc441
7 changed files with 78 additions and 0 deletions

6
dmenupowermenu Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
case "$(printf "shutdown\\nreboot" | dmenu -l 2 -p "Choose your poison")" in
"shutdown") poweroff ;;
"reboot") reboot ;;
esac