diff --git a/_desktop/qtile/config.py b/_desktop/qtile/config.py index e7b948f..4d197af 100644 --- a/_desktop/qtile/config.py +++ b/_desktop/qtile/config.py @@ -57,6 +57,7 @@ keys = [ # app binds Key([mod], "Return", lazy.spawn("sh -c 'BROWSER=firefox st'")), Key([mod], "space", lazy.spawncmd()), + Key([mod], "a", lazy.spawn("authenticator")), Key([mod], "e", lazy.group["scratchpad"].dropdown_toggle('spterm')), Key([mod], "i", lazy.spawn("scrot -f -s 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'")), Key([mod], "m", lazy.spawn("sh -c 'pgrep -x neomutt > /dev/null || BROWSER=firefox st -n mutt -e neomutt'")), @@ -157,6 +158,7 @@ mouse = [ floating_layout = layout.Floating( float_rules=[ *layout.Floating.default_float_rules, + Match(wm_class='Authenticator'), ], border_focus='#ffffff', border_normal="#272822",