Put all omarchy commands under the omarchy- prefix

This commit is contained in:
David Heinemeier Hansson
2025-07-15 19:30:23 -07:00
parent 018603be6d
commit d305935382
3 changed files with 4 additions and 4 deletions

View File

@ -0,0 +1,7 @@
#!/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