Skip to content

Instantly share code, notes, and snippets.

@adde88
Created November 30, 2024 13:44
Show Gist options
  • Save adde88/5770dc597f9c7358e9c59b6c72a86fe9 to your computer and use it in GitHub Desktop.
Save adde88/5770dc597f9c7358e9c59b6c72a86fe9 to your computer and use it in GitHub Desktop.
Corsair AIO to quiet mode at boot (SystemD) - Using liquidctl
[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
#!/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