X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=subdir_files%2F.xmonad%2Fxmonad.hs;h=9ab7becdc3b64b8e7dd1fa2633394d73774bd455;hb=7bb80db9b2945f6d2aca34291410a29794b1ceb5;hp=12423d106f2df2a2b86ed432751d1d27711bb494;hpb=baf48bc6d92e32347af61dcb5168012fccbb9c3e;p=distro-setup diff --git a/subdir_files/.xmonad/xmonad.hs b/subdir_files/.xmonad/xmonad.hs index 12423d1..9ab7bec 100644 --- a/subdir_files/.xmonad/xmonad.hs +++ b/subdir_files/.xmonad/xmonad.hs @@ -82,7 +82,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ , ((modm, xK_2), spawn "pavucontrol") , ((modm, xK_3), spawn "firefox") - , ((modm, xK_4), spawn "input-setup.sh") + , ((modm, xK_4), spawn "input-setup") -- we would really want to keep track of which workspace is darkened, -- and change things depending on where that workspace is @@ -188,7 +188,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ - -- open workspace, and send to workspace with same key plus control + -- open workspace, and send to workspace with same key plus shift [((m .|. modm, k), windows $ f i) | (i, k) <- zip (XMonad.workspaces conf) [xK_f, xK_d, xK_s, xK_a, xK_z, xK_grave, xK_7, xK_0] , (f, m) <- [(W.greedyView, 0), (W.shift, shiftMask)]]