dotfiles/bin/dimscreen

22 lines
192 B
Plaintext
Raw Permalink Normal View History

2024-09-13 17:06:26 +00:00
#!/usr/bin/env bash
dim() {
brightnessctl -s
brightnessctl s 45%
}
restore() {
brightnessctl -r
}
case "$1" in
"d")
dim
;;
"r")
restore
;;
*)
return 1
esac