diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-10-29 09:56:42 -0700 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-10-29 09:56:42 -0700 |
| commit | 3e92299dca8bdeda4af7c58b6784b1b4c7bb32ae (patch) | |
| tree | 2c4ebf56c6f089594102a484d49a864f03493271 /xmonad/xmonad.hs | |
| parent | fc77a67516a7afbb6de54d02be277992e38bdf90 (diff) | |
fixed fullscreen hook + swapped dmenu and browser
Diffstat (limited to 'xmonad/xmonad.hs')
| -rw-r--r-- | xmonad/xmonad.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmonad/xmonad.hs b/xmonad/xmonad.hs index 863707e..ee131be 100644 --- a/xmonad/xmonad.hs +++ b/xmonad/xmonad.hs @@ -47,8 +47,8 @@ myWorkspaces = ["1","2","3","4","5","6","7","8","9"] ------------------------------------------------------------------------ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ [ ((modm .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf) - , ((modm, xK_d ), spawn myBrowser) - , ((modm, xK_e ), spawn myLauncher) + , ((modm, xK_d ), spawn myLauncher) + , ((modm, xK_e ), spawn myBrowser) , ((noModMask , xF86XK_AudioMute), spawn myVolumeMute) , ((noModMask , xF86XK_AudioLowerVolume), spawn myVolumeDown) , ((noModMask , xF86XK_AudioRaiseVolume), spawn myVolumeUp) @@ -169,7 +169,7 @@ myManageHook = composeAll -- return (All True) if the default handler is to be run afterwards. To -- combine event hooks use mappend or mconcat from Data.Monoid. -- -myEventHook = ewmhDesktopsEventHook -- handleEventHook def +myEventHook = handleEventHook def ------------------------------------------------------------------------ -- Status bars and logging |
