Rofi Alt+Tab working flawlessly #1862
wellzenon
started this conversation in
Show and tell
Replies: 1 comment 5 replies
-
|
you can do a no-action timeout to accept entry now in rofi directly ( see 1.7.0 release notes and/or documentation) configuration {
timeout {
delay: 5;
action: "kb-accept-entry";
}
} |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, I don't know if this is really the place, but I found a solution for the issue 38 which is now closed.
rofi -modi window -show window -hide-scrollbar -padding 50 -line-padding 4 -auto-select \ -kb-cancel "Alt+Escape,Escape" \ -kb-accept-entry "!Alt-Tab,!Alt+Alt_L,Return"\ -kb-row-down "Alt+Tab,Alt+Down" \ -kb-row-up "Alt+ISO_Left_Tab,Alt+Up" \ -selected-row 1 & while for did in $(xinput --list --id-only) ; do xinput query-state $did 2>/dev/null | grep down ; done | egrep -q . ; do sleep 0 ; done xdotool key --delay 0 EnterThe solution is a mix from #38 (comment) and https://superuser.com/a/1602025
Beta Was this translation helpful? Give feedback.
All reactions