summaryrefslogtreecommitdiff
path: root/brightness
blob: b2c81c93d8a23fae1c0a10207a85cc2ebef41955 (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