21 lines
473 B
Bash
Executable File
21 lines
473 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# unused for now, repurposing for ddcutil control
|
|
#DISPLAY_STATUS=$(xrandr | grep DP-2)
|
|
#
|
|
#if [ "$DISPLAY_STATUS" = *"1440x3440"* ]; then
|
|
# xrandr --output DP-2 --off
|
|
#else
|
|
# init_displays
|
|
#fi
|
|
|
|
CHOICE=$(printf "brightness\ncontrast" | dmenu -c -i -l 2)
|
|
VALUE=$(printf "0\n10\n20\n30\n40\n50\n60\n70\n80\n90\n100" | dmenu -c -i -p "value to set")
|
|
|
|
case $CHOICE in
|
|
"brightness")
|
|
ddcutil setvcp 10 $VALUE;;
|
|
"contrast")
|
|
ddcutil setvcp 12 $VALUE;;
|
|
esac
|