Abandoned fcitx5 and switched to wayland-native keyboard layout management. Changed various other settings to help with the last. Added gammastep for night shift.
18 lines
265 B
Bash
18 lines
265 B
Bash
case `printf "Annuler\nSuspendre\nÉteindre\nRedémarrer\nQuitter" | $DMENU_COMMAND` in
|
|
"Annuler")
|
|
:
|
|
;;
|
|
"Suspendre")
|
|
systemctl suspend
|
|
;;
|
|
"Éteindre")
|
|
systemctl poweroff
|
|
;;
|
|
"Redémarrer")
|
|
systemctl reboot
|
|
;;
|
|
"Quitter")
|
|
swaymsg exit
|
|
;;
|
|
esac
|