Adding keybinding to toggle xmobar show/hide.

This commit is contained in:
Derek Taylor
2022-12-19 20:02:38 -06:00
parent 924d854e52
commit 526cfcadb9
2 changed files with 2 additions and 0 deletions

View File

@@ -658,6 +658,7 @@ myKeys c =
, ("M-S-c", addName "Kill focused window" $ kill1)
, ("M-S-a", addName "Kill all windows on WS" $ killAll)
, ("M-S-<Return>", addName "Run prompt" $ sequence_ [spawn (mySoundPlayer ++ dmenuSound), spawn "~/.local/bin/dm-run"])
, ("M-S-b", addName "Toggle bar show/hide" $ sendMessage ToggleStruts)
, ("M-/", addName "DTOS Help" $ spawn "~/.local/bin/dtos-help")]
^++^ subKeys "Switch to workspace"

View File

@@ -512,6 +512,7 @@ myKeys c =
, ("M-S-c", addName "Kill focused window" $ kill1)
, ("M-S-a", addName "Kill all windows on WS" $ killAll)
, ("M-S-<Return>", addName "Run prompt" $ sequence_ [spawn (mySoundPlayer ++ dmenuSound), spawn "~/.local/bin/dm-run"])
, ("M-S-b", addName "Toggle bar show/hide" $ sendMessage ToggleStruts)
, ("M-/", addName "DTOS Help" $ spawn "~/.local/bin/dtos-help")]
^++^ subKeys "Switch to workspace"