diff options
author | Adrian Kummerlaender | 2020-05-19 22:29:29 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-05-19 22:29:29 +0200 |
commit | a556b03ec74f8270d19f1ac17d402fc29c5fd57f (patch) | |
tree | b9f3269a9d6619ef5590422769993a2b9e657f33 /gui | |
parent | 2464e2337d99a98085b397c11c55c3bf528c0ac9 (diff) | |
download | nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.tar nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.tar.gz nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.tar.bz2 nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.tar.lz nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.tar.xz nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.tar.zst nixos_home-a556b03ec74f8270d19f1ac17d402fc29c5fd57f.zip |
Change note scratchpad into a second drop down terminal
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/xmonad.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index b8e7f1e..31fb636 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -118,7 +118,7 @@ scratchpads host = (customFloating $ hideScreenBorder host sideBarLeft) , NS "messaging" "telegram-desktop" ((className =? "TelegramDesktop") <&&> (title /=? "Media viewer")) (customFloating $ hideScreenBorder host sideBarRight) - , NS "notes" "kitty --class=orgterm nvim ~/org/*.org" (className =? "orgterm") + , NS "scratch" "kitty --class=scratch" (className =? "scratch") (customFloating $ hideScreenBorder host dropDown) ] @@ -205,7 +205,7 @@ commonKeybindings host = , ("M-z" , namedScratchpadAction (scratchpads host) "literature") , ("M-r" , namedScratchpadAction (scratchpads host) "calculator") , ("M-m" , namedScratchpadAction (scratchpads host) "messaging") - , ("M-n" , namedScratchpadAction (scratchpads host) "notes") ] ++ + , ("M-n" , namedScratchpadAction (scratchpads host) "scratch") ] ++ -- workspace selection [ (p ++ [k] , windows $ f i) | (i, k) <- zip Main.workspaces ['1' .. '9'] |