Files
omarchy/bin/omarchy-cmd-apple-display-brightness
David Heinemeier Hansson 6a3ce098e9 Use a common namespace for cmds
2025-07-21 18:26:09 -04:00

8 lines
249 B
Bash
Executable File

#!/bin/bash
if [[ $# -eq 0 ]]; then
echo "Adjust Apple Display Brightness by passing +5000 or -5000 (or any range from 0-60000)"
else
sudo asdcontrol $(sudo asdcontrol --detect /dev/usb/hiddev* | grep ^/dev/usb/hiddev | cut -d: -f1) -- "$1"
fi