Added xdg-terminal-exec Added papirus icon theme; not yet active Enabled fcitx for sway Enabled sway autolaunch on login in tty1 Set git config
18 lines
249 B
Bash
18 lines
249 B
Bash
case `printf "Cancel\nSuspend\nPower Off\nReboot\nLog Out" | $DMENU_COMMAND` in
|
|
"Cancel")
|
|
:
|
|
;;
|
|
"Suspend")
|
|
systemctl suspend
|
|
;;
|
|
"Power Off")
|
|
systemctl poweroff
|
|
;;
|
|
"Reboot")
|
|
systemctl reboot
|
|
;;
|
|
"Log Out")
|
|
swaymsg exit
|
|
;;
|
|
esac
|