summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/qtile/config.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py
index 1e50e8c..66191ea 100644
--- a/.config/qtile/config.py
+++ b/.config/qtile/config.py
@@ -186,17 +186,17 @@ keys = [
lazy.spawn('amixer sset Master 5%+'),
desc="Increase volume"
),
- ### Music
+ ### Spotify
Key([mod, "shift"], "p",
- lazy.spawn("playerctl play-pause"),
+ lazy.spawn("spotify-control play-pause"),
desc="play/pause music"
),
- Key([mod, "shift"], "l",
- lazy.spawn("playerctl next"),
+ Key([mod, "shift"], "n",
+ lazy.spawn("spotify-control next"),
desc="next song"
),
- Key([mod, "shift"], "h",
- lazy.spawn("playerctl previous"),
+ Key([mod, "shift"], "b",
+ lazy.spawn("spotify-control previous"),
desc="previous song"
),
### Change languages
@@ -494,4 +494,5 @@ auto_fullscreen = True
focus_on_window_activation = "focus" # or smart
+
wmname = "Qtile-Apo11o"