Adding keybinding for conky toggle on/off

This commit is contained in:
Derek Taylor
2025-04-20 13:44:48 -05:00
parent 040a92149a
commit ec753750a5
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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