mirror of
https://github.com/rywng/dotfiles.git
synced 2024-11-15 07:21:49 +08:00
36 lines
944 B
Bash
Executable File
36 lines
944 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Modified from sway's locking script
|
|
# TODO: remove bashism
|
|
|
|
if [[ ! $(which swayidle 2>/dev/null) ]]; then
|
|
notify-send "ERROR" "Swayidle not found"
|
|
exit 1
|
|
fi
|
|
|
|
choices=("suspend" "poweroff" "reboot" "lock")
|
|
choice=$(printf "%s\n" "${choices[@]}" | fuzzel -d --prompt "🔌: ")
|
|
|
|
if test "$choice" = lock; then
|
|
sleep 0.3
|
|
# playerctl stop
|
|
|
|
bright=$(xbacklight -get)
|
|
|
|
swayidle -w \
|
|
timeout 5 "xbacklight -set 0" resume "xbacklight -set $bright" \
|
|
&
|
|
# timeout $sleep_time 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
|
|
idlepid=$!
|
|
|
|
swaylock -e -c 282828 --inside-color 00000003
|
|
# swaylock -S --effect-blur "12x12" --effect-greyscale --effect-vignette 0.5:0.5 --inside-color 28282860 \
|
|
# -e --ring-color 00000000 --line-color 00000000 --indicator --clock --text-color ebdbb2
|
|
|
|
kill $idlepid
|
|
swaymsg "output * power on"
|
|
xbacklight -set $bright
|
|
elif test -n "$choice"; then
|
|
systemctl $choice
|
|
fi
|