dotfiles/.local/bin/scripts/black

8 lines
149 B
Plaintext
Raw Normal View History

2023-05-25 20:37:55 +00:00
#!/bin/sh
2023-02-07 12:19:34 +00:00
# Suspend screen until enter is pressed
xset dpms force off
2023-05-25 20:37:55 +00:00
swaymsg "output * dpms off"
2023-02-07 12:19:34 +00:00
read
xset dpms force on
2023-05-25 20:37:55 +00:00
swaymsg "output * dpms on"