Created
January 19, 2023 22:30
-
-
Save shoaib281/a09cab14903f77b13f724785fc58de92 to your computer and use it in GitHub Desktop.
toggle dont auto-turn off
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
#!/bin/bash | |
if grep -q "\[AC\]\[SuspendSession\]" ~/.config/powermanagementprofilesrc; then | |
sed -i -e 's/\[AC\]\[SuspendSession\]/\[AC\]\[SuspendSessio3\]/g' ~/.config/powermanagementprofilesrc | |
sed -i -e "s/lidAction=1/lidAction=64/g" ~/.config/powermanagementprofilesrc | |
echo "downloading overnight" | |
else | |
sed -i -e 's/\[AC\]\[SuspendSessio3\]/\[AC\]\[SuspendSession\]/g' ~/.config/powermanagementprofilesrc | |
sed -i -e "s/lidAction=64/lidAction=1/g" ~/.config/powermanagementprofilesrc | |
echo "back to normal" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment