first commit

This commit is contained in:
2020-05-09 13:43:39 +02:00
commit e53c625e08
54 changed files with 7176 additions and 0 deletions

13
.local/bin/shut-sup-rest Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
choices="Lock\nSuspend\nReboot\nShutdown"
chosen=$(echo -e "$choices" | dmenu -i)
case "$chosen" in
Lock) slock ;;
Suspend) sudo pm-suspend && slock ;;
#Suspend) sudo systemctl suspend && slock ;;
#Suspend) sudo systemctl suspend && locki3 ;;
Reboot) sudo reboot ;;
Shutdown) sudo shutdown -h now ;;
esac