diff options
| author | Amin Bandali <amin@aminb.org> | 2018-05-09 11:12:04 -0400 | 
|---|---|---|
| committer | Amin Bandali <amin@aminb.org> | 2018-05-09 11:12:04 -0400 | 
| commit | 61f337f4fd3c3fc1e45be15a4922eec6931ca967 (patch) | |
| tree | 0420bbc2fa63a99b2e4c39fcd95d951a4f12acbf | |
| parent | f216613371550462f78ecb5dd69f25d89ba07344 (diff) | |
| download | configs-61f337f4fd3c3fc1e45be15a4922eec6931ca967.tar.gz configs-61f337f4fd3c3fc1e45be15a4922eec6931ca967.tar.xz configs-61f337f4fd3c3fc1e45be15a4922eec6931ca967.zip | |
[rc/rofi-pass] work around Roundcube bug in Firefox
Roundcube appears to be doing some JS magic that reacts badly with
rofi-pass: selecting an entry in rofi-pass by pressing enter causes
Roundcube to move focus from the username field to the password field,
which completely messes up rofi-pass' autotype. Strangely enough, this
doesn't happen in Chromium and I've only seen it in Firefox.
| -rw-r--r-- | rc.org | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -3459,7 +3459,7 @@ rofi.theme: /usr/share/rofi/themes//gruvbox-light.rasi  # rofi command. Make sure to have "$@" as last argument  _rofi () {      #rofi -no-auto-select -kb-accept-entry "!Return" -i -no-levenshtein-sort "$@" -    rofi -i -no-auto-select "$@" +    rofi -i -no-auto-select -kb-accept-entry "!Return" "$@"  }  # xdotool needs the keyboard layout to be set using setxkbmap | 
