Created
September 18, 2022 00:55
-
-
Save flukejones/3f77346fe2d78625addc87e2c90b0940 to your computer and use it in GitHub Desktop.
This file contains 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
#/etc/udev/rules.d/99-nvidia-ac.rules | |
# Stop nvidia_powerd on battery | |
SUBSYSTEM=="power_supply",ENV{POWER_SUPPLY_ONLINE}=="0",RUN+="/usr/bin/systemctl --no-block stop nvidia-powerd.service" | |
# Start nvidia_powerd on AC | |
SUBSYSTEM=="power_supply",ENV{POWER_SUPPLY_ONLINE}=="1",RUN+="/usr/bin/systemctl --no-block start nvidia-powerd.service" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment