Created
November 6, 2017 00:36
-
-
Save gabsprates/d8c319b234dd42e7672dbad1b85f8c20 to your computer and use it in GitHub Desktop.
as I use mouse on left hand, i made that for change when someone to use my mouse
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 | |
handed=$(gsettings get org.gnome.desktop.peripherals.mouse left-handed) | |
if [ $handed == true ] | |
then | |
gsettings set org.gnome.desktop.peripherals.mouse left-handed false | |
else | |
gsettings set org.gnome.desktop.peripherals.mouse left-handed true | |
fi | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment