tweak(qtile): add Firefox private window hotkey

This commit is contained in:
Infinidoge 2022-05-05 13:29:28 -04:00
parent 4545f0534c
commit 7e2a21f238

View file

@ -368,6 +368,11 @@ keys = [
lazy.spawn("firefox --new-window"), lazy.spawn("firefox --new-window"),
desc="Start Firefox (New Window)", desc="Start Firefox (New Window)",
), ),
Key(
[Keys.SUPER, Keys.ALT, Keys.CONTROL], "f",
lazy.spawn("firefox --private-window"),
desc="Start Firefox (New Private Window)",
),
Key( Key(
[Keys.SUPER, Keys.ALT], "e", [Keys.SUPER, Keys.ALT], "e",
lazy.spawn("emacsclient -c -a 'emacs'"), lazy.spawn("emacsclient -c -a 'emacs'"),