From ec753750a5050aa8d9fb5d695d303b536e346fed Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Sun, 20 Apr 2025 13:44:48 -0500 Subject: [PATCH] Adding keybinding for conky toggle on/off --- .config/qtile/README.org | 2 +- .config/qtile/config.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/qtile/README.org b/.config/qtile/README.org index 021ddbf..b79b96a 100644 --- a/.config/qtile/README.org +++ b/.config/qtile/README.org @@ -145,6 +145,7 @@ keys = [ Key([mod, "shift"], "r", lazy.reload_config(), desc="Reload the config"), Key([mod, "shift"], "q", lazy.spawn("dm-logout -r"), desc="Logout menu"), Key([mod], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"), + Key([mod, "shift"], "T", lazy.spawn("conky-toggle"), desc="Conky toggle on/off"), # Switch between windows # Some layouts like 'monadtall' only need to use j/k to move @@ -315,7 +316,6 @@ Colors are defined in a separate 'colors.py' file. It is best not manually chan #+begin_src python colors = colors.DoomOne - #+end_src * Default Settings For All Layouts diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 7614d72..3a6eb08 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -69,6 +69,7 @@ keys = [ Key([mod, "shift"], "r", lazy.reload_config(), desc="Reload the config"), Key([mod, "shift"], "q", lazy.spawn("dm-logout -r"), desc="Logout menu"), Key([mod], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"), + Key([mod, "shift"], "T", lazy.spawn("conky-toggle"), desc="Conky toggle on/off"), # Switch between windows # Some layouts like 'monadtall' only need to use j/k to move