2023年07月17日

archbang-summer-1607-x86_64.iso。virt-manager-4.1*qemu kvm) / archbang(hyprland)

カーネルが、6.4.3-arch1-2に
なっています。そのほうかは、
変わりないような。

~./AB_Scripts/exitmenu
のLog Outが、おそらく効かないままだと思います。

#!/usr/bin/env bash
# exitmenu by Mr Green [mrgreen@archbang.org]
# Power Options for ArchBang-sway
options="Log Out\nReboot\nPoweroff"
chosen=$(echo -e "$options" | wofi -p 'Select Option' --dmenu )

case $chosen in
"Log Out") sway exit ;;
"Reboot") reboot ;;
"Poweroff") poweroff ;;
esac

hyprlandの場合は、
hyprctl dispatch exit;;

hyprlandの場合、exitmenuを立ち上げたあと、
exitmenuをキャンセルができなくて、
1項目加えました。
options="Log Out\nReboot\nPoweroff\nCancel"
"Cancel") exit ;;


posted by ブログ開設者 at 01:45| Comment(0) | linux | このブログの読者になる | 更新情報をチェックする