We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. Tell me please, how i can disable auto-cycles from the first to the last desktop?
The text was updated successfully, but these errors were encountered:
Hi! Thanks for asking.
Two lines are responsible for that. Switching desktop to right:
windows-desktop-switcher/desktop_switcher.ahk
Line 154 in 755abfc
Line 161 in 755abfc
Change them to these, respectively:
_switchDesktopToTarget(CurrentDesktop == DesktopCount ? CurrentDesktop : CurrentDesktop + 1)
_switchDesktopToTarget(CurrentDesktop == 1 ? CurrentDesktop : CurrentDesktop - 1)
Then reload (shutdown and start again) the script again for the changes to be applied.
Please let us know if it works for you!
Sorry, something went wrong.
It works! Thanks!
No branches or pull requests
Hi. Tell me please, how i can disable auto-cycles from the first to the last desktop?
The text was updated successfully, but these errors were encountered: