10 lines
138 B
Bash
Executable File
10 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
# ~/.config/sway/idle.sh
|
|
|
|
if playerctl status 2>/dev/null | grep -q Playing; then
|
|
exit 0
|
|
else
|
|
swaylock -f -c 000000
|
|
fi
|
|
|