You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 18, 2023. It is now read-only.
For now there are Toggle overview, Run command and Show desktop available, I take that as no keyboard shortcuts. Please tell me how to make it through the Run command option if I'm wrong.
What I really need is a keyboard shortcut like Alt + Tab, to switch in the most recent two windows fast. BTW isn't the Toggle overview equals to Win/Super key?
Anyway, thanks a lot for your work, without this extension there would be no other choices on hot corner stuff.
The text was updated successfully, but these errors were encountered:
I'm sorry, currently I don't have any time to test things out but if you don't use Wayland you might be able to do what you want with Run command and xdotool.
After two weeks I finally recalled to google xdotool alt tab and found a workaround in this commentthis answer. For now, it seems just perfect enough to me.
Here is the code for /home/username/.switchWindow.sh.
#!/bin/sh
xdotool keydown alt key Tab; sleep 0.1; xdotool keyup alt
And in our extension's config just use Run Command and input /home/username/.switchWindow.sh.
For now there are
Toggle overview
,Run command
andShow desktop
available, I take that as no keyboard shortcuts. Please tell me how to make it through theRun command
option if I'm wrong.What I really need is a keyboard shortcut like
Alt + Tab
, to switch in the most recent two windows fast. BTW isn't theToggle overview
equals toWin
/Super
key?Anyway, thanks a lot for your work, without this extension there would be no other choices on hot corner stuff.
The text was updated successfully, but these errors were encountered: