Created
November 30, 2024 13:44
-
-
Save adde88/5770dc597f9c7358e9c59b6c72a86fe9 to your computer and use it in GitHub Desktop.
Corsair AIO to quiet mode at boot (SystemD) - Using liquidctl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Set Corsair AIO to quiet mode | |
After=multi-user.target | |
[Service] | |
Type=oneshot | |
ExecStart=/usr/local/bin/corsair-quiet.sh | |
RemainAfterExit=yes | |
[Install] | |
WantedBy=multi-user.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Located at /usr/local/bin/corsair-quiet.sh | |
/usr/local/bin/liquidctl initialize --match 1 > /dev/null 2>&1 | |
sleep 1 | |
/usr/local/bin/liquidctl set fan speed 20 30 30 50 35 80 40 90 50 100 --match 1 > /dev/null 2>&1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment