aboutsummaryrefslogtreecommitdiff
path: root/home-manager/i3/scripts/exit.sh
blob: 6e1f4928809cd8df9e59828ee1d01af8de3832f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash
choice=$(echo -e "Sleep\nLock\nLock and sleep\nExit i3" | rofi -dmenu -i -p "What do you want to do")
case $choice in
	"Sleep")
		systemctl suspend
	;;
	"Lock")
		i3lock -eti /usr/share/backgrounds/lockscreen.png 
	;;
	"Lock and sleep")
		i3lock -eti /usr/share/backgrounds/lockscreen.png 
		systemctl suspend
	;;
	"Exit i3")
		i3-msg exit
	;;
	*)
		notify-send "Canceling"
	;;
esac