feat(sway): autohide cursor and fix redundant opts

This commit is contained in:
Ryan 2024-02-18 15:28:35 +08:00
parent c86e69400b
commit e0d7aaaaab
3 changed files with 4 additions and 1 deletions

View File

@ -12,3 +12,5 @@ force_display_urgency_hint 500 ms
smart_borders no_gaps
seat * xcursor_theme Adwaita
seat * hide_cursor 10000

View File

@ -24,3 +24,4 @@ client.background #928374 #282828
default_border pixel 1
output * bg #1d2021 solid_color
# output * bg $(find ~/Pictures/wall/dark/ -type f | shuf -n1) fill

View File

@ -8,7 +8,7 @@ if [[ ! $(which swayidle 2> /dev/null) ]]; then
exit 1
fi
choices=("suspend" "shutdown" "poweroff" "reboot" "lock")
choices=("suspend" "poweroff" "reboot" "lock")
choice=$(printf "%s\n" "${choices[@]}" | fuzzel -d --prompt "󰚥: ")