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