summaryrefslogtreecommitdiff
path: root/desktop/.xmonad/xmonad.hs
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/.xmonad/xmonad.hs')
-rw-r--r--desktop/.xmonad/xmonad.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/.xmonad/xmonad.hs b/desktop/.xmonad/xmonad.hs
index 375d74d..ee1b10d 100644
--- a/desktop/.xmonad/xmonad.hs
+++ b/desktop/.xmonad/xmonad.hs
@@ -92,7 +92,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
, ((modm, xK_s ), spawn "rofipass")
-- launch emacs everywhere
- , ((modm, xK_minus ), spawn "emacsclient --eval \"(emacs-everywhere)\"")
+ , ((modm, xK_t ), spawn "emacsclient -c")
-- close focused window
, ((modm .|. shiftMask, xK_c ), kill)
@@ -134,7 +134,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
, ((modm, xK_l ), sendMessage Expand)
-- Push window back into tiling
- , ((modm, xK_t ), withFocused $ windows . W.sink)
+ , ((modm .|. shiftMask, xK_t ), withFocused $ windows . W.sink)
-- Next monitor
, ((modm , xK_Tab ), nextScreen)