Removed old powermenu script

This commit is contained in:
Harri Lahtinen 2021-10-25 13:55:08 +03:00
parent 26f2ae9c9e
commit 2408f94b13
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
#!/usr/bin/env bash
# to edit themes in place with live reload:
# ag -l | entr -r $HOME/.config/rofi/on
# use -normal-window flag on rofi if you want to not have to close rofi to get
# back to your editor.
# https://www.reddit.com/r/qtools/comments/amswu9/autoloading_rofi_for_quick_themeing_experience/
options="  lock
 logout
 sleep
 hibernate
 reboot
 shutdown"
themes_dir=$HOME/.config/rofi/themes
theme=${1:-$themes_dir/powermenu.rasi}
selection=$(echo -e "${options}" | rofi -dmenu -config ~/.config/rofi/config.rasi $theme -columns 6 -lines 1 -width 1700)
echo "This is your selection: $selection"
case "${selection}" in
"  lock")
betterlockscreen -l dim;;
"  logout")
i3-msg exit;;
"  sleep")
systemctl suspend;;
"  hibernate")
systemctl hibernate;;
"  reboot")
systemctl reboot;;
"  shutdown")
systemctl poweroff -i;;
esac
exit 0