mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Add framwork 16 RGB syncing * fixed install script, fixed color changing when style changes * added framework scripts to the main install scripts * renamed theme-set scripts, added migration * use omarchy-pkg-add, shared keyboard template, tracked udev rule * call the install file from the migration file
10 lines
375 B
Bash
10 lines
375 B
Bash
# Allow unprivileged access to the Framework 16 keyboard for RGB control via qmk_hid.
|
|
|
|
if omarchy-hw-framework16; then
|
|
if [[ ! -f /etc/udev/rules.d/50-framework16-qmk-hid.rules ]]; then
|
|
sudo cp "$OMARCHY_PATH/default/udev/framework16-qmk-hid.rules" /etc/udev/rules.d/50-framework16-qmk-hid.rules
|
|
sudo udevadm control --reload-rules
|
|
sudo udevadm trigger
|
|
fi
|
|
fi
|