initial commit

This commit is contained in:
2021-03-22 16:02:35 +01:00
commit 16214686c5
137 changed files with 29415 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
## Created By Aditya Shakya
MENU="$(rofi -sep "|" -dmenu -i -p 'System' -width 12 -hide-scrollbar -line-padding 4 -padding 20 -lines 6 <<< " Lock| Logout|Suspend|Hibernate| Reboot| Shutdown")"
case "$MENU" in
*Lock) light-locker-command -l ;;
*Logout) xmonad --exit ;;
*Suspend) systemctl suspend;;
*Hibernate) systemctl hibernate;;
*Shutdown) systemctl -i poweroff ;;
*Reboot) systemctl reboot
esac