Update users home folder, clean up some scripts and add comments

This commit is contained in:
natemaia
2017-12-17 10:06:39 -08:00
parent e322152f69
commit 662f7d9388
87 changed files with 2309 additions and 2364 deletions

View File

@ -7,20 +7,19 @@ question=$(echo " lock| logout| reboot| shutdown" | rofi -sep "|" \
-color-normal "#2b303b, #8fa1b3, #2b303b, #8fa1b3, #2b303b")
case $question in
*lock)
*lock)
i3lock-fancy
;;
*logout)
*logout)
session-logout
;;
*reboot)
*reboot)
systemctl reboot
;;
*shutdown)
*shutdown)
systemctl poweroff
;;
*)
: # do nothing on wrong response
*)
exit 0 # do nothing on wrong response
;;
esac