diff --git a/.config/xmonad/README.org b/.config/xmonad/README.org index 60025cb..724114d 100644 --- a/.config/xmonad/README.org +++ b/.config/xmonad/README.org @@ -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-", 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" diff --git a/.config/xmonad/xmonad.hs b/.config/xmonad/xmonad.hs index e754634..251a886 100644 --- a/.config/xmonad/xmonad.hs +++ b/.config/xmonad/xmonad.hs @@ -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-", 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"