No more Gentoo

This commit is contained in:
Cheri 2022-09-11 11:26:44 +03:00 committed by vib
parent cfdf99ad24
commit be4daf6ace
2 changed files with 9 additions and 7 deletions

View file

@ -38,13 +38,13 @@ icons[shutdown]="\uf011"
icons[cancel]="\u00d7"
declare -A actions
actions[lockscreen]="loginctl lock-session ${XDG_SESSION_ID-}"
actions[lockscreen]="systemctl lock-session ${XDG_SESSION_ID-}"
#actions[switchuser]="???"
actions[logout]="loginctl terminate-session ${XDG_SESSION_ID-}"
actions[suspend]="loginctl suspend"
actions[hibernate]="loginctl hibernate"
actions[reboot]="loginctl reboot"
actions[shutdown]="loginctl poweroff"
actions[logout]="systemctl terminate-session ${XDG_SESSION_ID-}"
actions[suspend]="systemctl suspend"
actions[hibernate]="systemctl hibernate"
actions[reboot]="systemctl reboot"
actions[shutdown]="systemctl poweroff"
# By default, ask for confirmation for actions that are irreversible
confirmations=(reboot shutdown logout)