aboutsummaryrefslogtreecommitdiff
path: root/gui/conf/xmonad.hs
diff options
context:
space:
mode:
authorAdrian Kummerlaender2020-06-02 15:37:58 +0200
committerAdrian Kummerlaender2020-06-02 15:37:58 +0200
commit311beb9cac83f10e9cfeeff285b8df33cb59faa0 (patch)
tree3629eeb976a885b5c23dce4568f69fa4bef38883 /gui/conf/xmonad.hs
parenta556b03ec74f8270d19f1ac17d402fc29c5fd57f (diff)
downloadnixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.tar
nixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.tar.gz
nixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.tar.bz2
nixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.tar.lz
nixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.tar.xz
nixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.tar.zst
nixos_home-311beb9cac83f10e9cfeeff285b8df33cb59faa0.zip
Revert "Switch back to vim for note taking"
This reverts commit fdf74ed8fe1c494c49d0b0a61024ccfb04ca63b5.
Diffstat (limited to 'gui/conf/xmonad.hs')
-rw-r--r--gui/conf/xmonad.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs
index 31fb636..f5e8893 100644
--- a/gui/conf/xmonad.hs
+++ b/gui/conf/xmonad.hs
@@ -118,8 +118,8 @@ scratchpads host =
(customFloating $ hideScreenBorder host sideBarLeft)
, NS "messaging" "telegram-desktop" ((className =? "TelegramDesktop") <&&> (title /=? "Media viewer"))
(customFloating $ hideScreenBorder host sideBarRight)
- , NS "scratch" "kitty --class=scratch" (className =? "scratch")
- (customFloating $ hideScreenBorder host dropDown)
+ , NS "notes" "emacs --title=notemacs ~/org/org.org" (title =? "notemacs")
+ (customFloating $ hideScreenBorder host dropDownLarge)
]
hudMonitor host = monitor
@@ -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) "scratch") ] ++
+ , ("M-n" , namedScratchpadAction (scratchpads host) "notes") ] ++
-- workspace selection
[ (p ++ [k] , windows $ f i) | (i, k) <- zip Main.workspaces ['1' .. '9']