dotfiles/.local/bin/scripts/black

8 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"