From 2f3e8429b248ab4255f6be8a023259d7eb120c13 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Tue, 25 Aug 2020 18:44:45 +0200 Subject: [PATCH] [qtile] Add spotify keybinding --- qtile/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qtile/config.py b/qtile/config.py index 4e45e41..7134c43 100644 --- a/qtile/config.py +++ b/qtile/config.py @@ -65,6 +65,7 @@ keys = [ Key([mod, "shift"], "t", lazy.spawn("alacritty")), Key([mod, "control"], "t", lazy.spawn("es -e '(eshell)'")), Key([mod], "b", lazy.spawn("brave")), + Key([mod], "s", lazy.spawn("spotify")), Key([mod, "shift"], "b", lazy.spawn("firefox-developer-edition")), Key([mod, "control"], "m", lazy.spawn("es -e '(mu4e)'")), Key([mod, "control"], "e", lazy.spawn("es -e '(elfeed)'")),