Last active
August 21, 2021 15:26
-
-
Save arag0re/53c4a0f77b0e69671aca65a88127bcaf to your computer and use it in GitHub Desktop.
toggle-razer-on-off
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
echo "Razer Synapse Off" | |
sleep 3 | |
sudo sed -i -e 's/<false/<true/' /Library/LaunchAgents/com.razer.rzupdater.plist | |
echo "Now rebooting!" | |
sleep 3 | |
sudo reboot |
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
cho "Razer Synapse On" | |
sleep 3 | |
sudo sed -i -e 's/<true/<false/' /Library/LaunchAgents/com.razer.rzupdater.plist | |
echo "Now rebooting!" | |
sleep 3 | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment