Last active
July 18, 2017 07:42
-
-
Save nitanshu/c6ce9d3325211b507e9f3128841de928 to your computer and use it in GitHub Desktop.
It will switch your workspace after 5 seconds
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
# If your system does not have xdotool please install it | |
# sudo apt-get install xdotool | |
# copy this file to /bin folder | |
# cd /bin | |
# sh workspaces.sh | |
while true | |
do xdotool key ctrl+alt+Right | |
sleep 5 | |
xdotool key ctrl+alt+Down | |
sleep 5 | |
xdotool key ctrl+alt+Left | |
sleep 5 | |
xdotool key ctrl+alt+Up | |
sleep 5 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment