dotfiles/.config/scripts/udev.sh

20 lines
382 B
Bash
Raw Normal View History

2025-05-07 05:48:27 -05:00
#!/usr/bin/zsh
performance() {
echo '128' >/sys/class/leds/system76_acpi::kbd_backlight/brightness
/usr/bin/system76-power profile performance
}
battery() {
echo '128' >/sys/class/leds/system76_acpi::kbd_backlight/brightness
/usr/bin/system76-power profile battery
}
case "$1" in
performance) performance ;;
battery) battery ;;
*) echo "Please enter an action" ;;
esac