summaryrefslogtreecommitdiff
path: root/brightness
blob: 024b581cf690e9d9a950f47caf20c5b2d5e5f658 (plain)
1
2
3
4
5
6
7
#!/bin/sh
# This script is for managing system brightness. It is envoked by dwm.

case "$1" in
up) sudo brightnessctl s "10%+" ;;
down) sudo brightnessctl s "10%-" ;;
esac