6 lines
92 B
Plaintext
6 lines
92 B
Plaintext
|
#!/bin/bash
|
||
|
set -eou pipefail
|
||
|
|
||
|
swaymsg "output * dpms off" && \
|
||
|
swaymsg "output * dpms on"
|