Update dotfiles

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-02-01 16:54:47 +02:00
parent d23f3dd3b6
commit 9da042ec2a
5 changed files with 27 additions and 29 deletions

View File

@@ -20,7 +20,6 @@ show=("${all[@]}")
declare -A texts
texts[lockscreen]="lock screen"
texts[switchuser]="switch user"
texts[logout]="log out"
texts[suspend]="suspend"
texts[hibernate]="hibernate"
@@ -31,7 +30,6 @@ texts[shutdown]="shut down"
declare -A icons
icons[lockscreen]="\uf023"
icons[switchuser]="\uf518"
icons[logout]="\uf842"
icons[suspend]="\uf9b1"
icons[hibernate]="\uf7c9"
@@ -51,8 +49,8 @@ actions[reboot-windows]="sudo grub-reboot 2; systemctl reboot"
actions[reboot-uefi]="sudo grub-reboot 3; systemctl reboot"
actions[shutdown]="systemctl poweroff"
# By default, ask for confirmation for actions that are irreversible
confirmations=(reboot reboot-windows shutdown logout)
# Ask for confirmation for every action by default
confirmations=("${all[@]}")
# By default, no dry run
dryrun=false