From d2e6eea9a0b49c2b59b040fa98cb4055e8aaa752 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Tue, 14 Jul 2020 21:48:49 +0200 Subject: [PATCH] [qtile] Start Firefox Developer Edition with mod+shift+b --- qtile/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qtile/config.py b/qtile/config.py index 634237f..6898a4f 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -62,6 +62,7 @@ keys = [ Key([mod], "t", lazy.spawn("alacritty -e /usr/bin/fish")), Key([mod, "shift"], "t", lazy.spawn("alacritty")), Key([mod], "b", lazy.spawn("nyxt")), + Key([mod, "shift"], "b", lazy.spawn("firefox-developer-edition")), # Toggle between different layouts as defined below Key([mod], "Tab", lazy.next_layout()),