mirror of
https://github.com/tumillanino/miasma-os.git
synced 2026-04-11 07:15:31 +00:00
12 lines
403 B
Bash
12 lines
403 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Tell this script to exit if there are any errors.
|
|
# You should have this in every custom script, to ensure that your completed
|
|
# builds actually ran successfully without any errors!
|
|
set -oue pipefail
|
|
|
|
# Download udev rules file
|
|
wget https://openrgb.org/releases/release_0.9/60-openrgb.rules
|
|
|
|
# Move udev rules file to udev rules directory
|
|
mv 60-openrgb.rules /usr/lib/udev/rules.d |