mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
13 lines
507 B
Bash
Executable File
13 lines
507 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Adjust the brightness on Apple Studio Displays and Apple XDR Displays using asdcontrol.
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
echo "Adjust Apple Display Brightness by passing +5000 or -5000 (or any range from 0-60000)"
|
|
else
|
|
device="$(sudo asdcontrol --detect /dev/usb/hiddev* | grep ^/dev/usb/hiddev | cut -d: -f1)"
|
|
sudo asdcontrol "$device" -- "$1" >/dev/null
|
|
value="$(sudo asdcontrol "$device" | awk -F= '/BRIGHTNESS=/{print $2+0}')"
|
|
omarchy-swayosd-brightness "$(( value * 100 / 60000 ))"
|
|
fi
|