7 lines
149 B
Bash
Executable file
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"
|