15 lines
211 B
Bash
Executable File
15 lines
211 B
Bash
Executable File
#! /bin/bash
|
|
|
|
__lock() {
|
|
gtklock
|
|
}
|
|
|
|
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
|