mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-07 09:48:44 +00:00
11 lines
163 B
Bash
Executable File
11 lines
163 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
case $1 in
|
|
up)
|
|
ddcutil -d 1 setvcp 10 $(($2 + 10))
|
|
;;
|
|
down)
|
|
ddcutil -d 1 setvcp 10 $(($2 - 10))
|
|
;;
|
|
esac
|