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