Files
dotfiles/bin/lock.sh
2022-07-26 20:46:29 +03:00

20 lines
267 B
Bash
Executable File

#! /bin/bash
__lock() {
gtklock -d
}
if [[ "$1" == "just-lock" ]]; then
__lock
exit
fi
amount_of_outputs=$(swaymsg -t get_outputs | grep -i name | wc -l)
if [[ "$amount_of_outputs" == "1" ]]; then
playerctl pause
__lock
else
swaymsg output eDP-1 disable
fi