dotfiles/.local/bin/scripts/black
2023-05-25 21:37:55 +01:00

7 lines
149 B
Bash
Executable file

#!/bin/sh
# Suspend screen until enter is pressed
xset dpms force off
swaymsg "output * dpms off"
read
xset dpms force on
swaymsg "output * dpms on"