Xmonad/Config archive/oxymor00n's xmonad.hs
From HaskellWiki
(Difference between revisions)
(update my config) |
(update to current version) |
||
| Line 1: | Line 1: | ||
| - | Some of the other scripts I use can be found [http://sec.modprobe.de/hg/?file/ here]. | + | Some of the other scripts I use can be found [http://sec.modprobe.de/hg/?file/ here] (outdated at the moment). |
<haskell> | <haskell> | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
import XMonad | import XMonad | ||
import System.Exit | import System.Exit | ||
| - | + | import XMonad.Core | |
import qualified XMonad.StackSet as W | import qualified XMonad.StackSet as W | ||
import qualified Data.Map as M | import qualified Data.Map as M | ||
| Line 31: | Line 21: | ||
import XMonad.Util.Run (spawnPipe) | import XMonad.Util.Run (spawnPipe) | ||
import System.IO (Handle, hPutStrLn) | import System.IO (Handle, hPutStrLn) | ||
| + | import Monad | ||
import XMonad.Prompt | import XMonad.Prompt | ||
import XMonad.Prompt.Shell | import XMonad.Prompt.Shell | ||
| + | import XMonad.Prompt.Window | ||
import XMonad.Layout.SimpleFloat | import XMonad.Layout.SimpleFloat | ||
import XMonad.Layout.Decoration | import XMonad.Layout.Decoration | ||
import XMonad.Layout.Simplest | import XMonad.Layout.Simplest | ||
| + | import XMonad.Util.WorkspaceCompare | ||
| + | import XMonad.Prompt.Theme | ||
| + | import XMonad.Layout.WindowArranger | ||
| + | import XMonad.Actions.MouseResize | ||
| - | |||
| - | |||
| - | |||
| - | |||
myTerminal = "urxvt" | myTerminal = "urxvt" | ||
| - | |||
| - | |||
| - | |||
myBorderWidth = 1 | myBorderWidth = 1 | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myModMask = mod4Mask | myModMask = mod4Mask | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myNumlockMask = mod2Mask | myNumlockMask = mod2Mask | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myWorkspaces = ["1:web", "2:emacs" ,"3:gnus", "4:music", "5:shells"] ++ map show [6 .. 9 :: Int] | myWorkspaces = ["1:web", "2:emacs" ,"3:gnus", "4:music", "5:shells"] ++ map show [6 .. 9 :: Int] | ||
| - | |||
| - | |||
| - | |||
myNormalBorderColor = "#111" | myNormalBorderColor = "#111" | ||
myFocusedBorderColor = "aquamarine3" | myFocusedBorderColor = "aquamarine3" | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myDefaultGaps = [(0,0,0,0),(0,20,0,0)] | myDefaultGaps = [(0,0,0,0),(0,20,0,0)] | ||
| - | |||
| - | |||
| - | |||
myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $ | myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $ | ||
-- launch a terminal | -- launch a terminal | ||
| Line 107: | Line 47: | ||
-- close focused window | -- close focused window | ||
, ((modMask .|. shiftMask, xK_c ), kill) | , ((modMask .|. shiftMask, xK_c ), kill) | ||
| - | + | -- Rotate through the available layout algorithms | |
, ((modMask, xK_space ), sendMessage NextLayout) | , ((modMask, xK_space ), sendMessage NextLayout) | ||
-- Reset the layouts on the current workspace to default | -- Reset the layouts on the current workspace to default | ||
| Line 121: | Line 61: | ||
-- Move focus to the master window | -- Move focus to the master window | ||
, ((modMask, xK_m ), windows W.focusMaster ) | , ((modMask, xK_m ), windows W.focusMaster ) | ||
| - | |||
| - | |||
-- Swap the focused window with the next window | -- Swap the focused window with the next window | ||
, ((modMask .|. shiftMask, xK_j ), windows W.swapDown ) | , ((modMask .|. shiftMask, xK_j ), windows W.swapDown ) | ||
| Line 140: | Line 78: | ||
, ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) | , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) | ||
-- Restart xmonad | -- Restart xmonad | ||
| - | , ((modMask , xK_q ), restart "xmonad" True) | + | , ((modMask , xK_q ), restart "xmonad" True)] |
| - | + | ||
++ | ++ | ||
| - | |||
-- mod-[1..9], Switch to workspace N | -- mod-[1..9], Switch to workspace N | ||
-- mod-shift-[1..9], Move client to workspace N | -- mod-shift-[1..9], Move client to workspace N | ||
| - | |||
[((m .|. modMask, k), windows $ f i) | [((m .|. modMask, k), windows $ f i) | ||
| (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9] | | (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9] | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]] | , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]] | ||
++ | ++ | ||
| - | |||
| - | |||
| - | |||
-- shell prompt | -- shell prompt | ||
| - | ((modMask , xK_p), shellPrompt oxyXPConfig) | + | [ ((modMask , xK_p), shellPrompt oxyXPConfig) |
, ((modMask , xK_o), shellPrompt oxyXPConfig) | , ((modMask , xK_o), shellPrompt oxyXPConfig) | ||
| - | -- move window to | + | -- move window to next workspace and follow |
, ((modMask .|. shiftMask, xK_Right), shiftToNext >> nextWS) | , ((modMask .|. shiftMask, xK_Right), shiftToNext >> nextWS) | ||
-- move window to previous workspace and follow | -- move window to previous workspace and follow | ||
, ((modMask .|. shiftMask, xK_Left), shiftToPrev >> prevWS) | , ((modMask .|. shiftMask, xK_Left), shiftToPrev >> prevWS) | ||
| - | |||
| - | |||
-- switch focus between physical screens... | -- switch focus between physical screens... | ||
, ((modMask, xK_Down), nextScreen) | , ((modMask, xK_Down), nextScreen) | ||
| Line 176: | Line 98: | ||
, ((modMask .|. shiftMask, xK_Down), shiftNextScreen >> nextScreen) | , ((modMask .|. shiftMask, xK_Down), shiftNextScreen >> nextScreen) | ||
-- previous workspace | -- previous workspace | ||
| - | , ((modMask, xK_Left), | + | , ((modMask, xK_Left), moveTo Prev (WSIs (liftM (not .) isVisible)) ) |
| - | , ((modMask .|. controlMask, xK_k), | + | , ((modMask .|. controlMask, xK_k), moveTo Prev (WSIs (liftM (not .) isVisible)) ) |
-- next workspace | -- next workspace | ||
| - | , ((modMask, xK_Right), | + | , ((modMask, xK_Right), moveTo Next (WSIs (liftM (not .) isVisible)) ) |
| - | , ((modMask .|. controlMask, xK_j), | + | , ((modMask .|. controlMask, xK_j), moveTo Next (WSIs (liftM (not .) isVisible)) ) |
| - | -- resize tiled windows | + | -- swap screens |
| + | , ((modMask, xK_s), swapNextScreen) | ||
| + | , ((modMask, xK_Up), swapNextScreen) | ||
| + | -- resize tiled windows vertically | ||
, ((modMask, xK_a), sendMessage MirrorShrink) | , ((modMask, xK_a), sendMessage MirrorShrink) | ||
, ((modMask, xK_y), sendMessage MirrorExpand) | , ((modMask, xK_y), sendMessage MirrorExpand) | ||
| - | -- | + | -- toggle struts |
, ((modMask .|. shiftMask, xK_b), sendMessage ToggleStruts) | , ((modMask .|. shiftMask, xK_b), sendMessage ToggleStruts) | ||
, ((modMask , xK_b), modifyGap (\i n -> let x = (XMonad.defaultGaps conf ++ repeat (0,0,0,0)) !! i in if n == x then (0,0,0,0) else x)) | , ((modMask , xK_b), modifyGap (\i n -> let x = (XMonad.defaultGaps conf ++ repeat (0,0,0,0)) !! i in if n == x then (0,0,0,0) else x)) | ||
-- brings the currently focused window to the master area | -- brings the currently focused window to the master area | ||
, ((modMask, xK_Return), dwmpromote) | , ((modMask, xK_Return), dwmpromote) | ||
| + | , ((modMask .|. controlMask, xK_t), themePrompt oxyXPConfig) | ||
, ((modMask .|. controlMask, xK_space), (sendMessage (Toggle "Full")) >> sendMessage (Toggle "Grid"))] | , ((modMask .|. controlMask, xK_space), (sendMessage (Toggle "Full")) >> sendMessage (Toggle "Grid"))] | ||
++ | ++ | ||
| Line 196: | Line 122: | ||
[ ((0, xK_e), spawn "emacsclient -s emacs -c -d $DISPLAY") | [ ((0, xK_e), spawn "emacsclient -s emacs -c -d $DISPLAY") | ||
, ((0, xK_f), spawn "firefox") | , ((0, xK_f), spawn "firefox") | ||
| - | |||
, ((0, xK_Return), spawn "urxvt") | , ((0, xK_Return), spawn "urxvt") | ||
, ((0, xK_t), spawn "~/bin/tvbrowser") | , ((0, xK_t), spawn "~/bin/tvbrowser") | ||
| Line 205: | Line 130: | ||
, ((modMask, xK_x), nextScreen) | , ((modMask, xK_x), nextScreen) | ||
-- window bringer emacs-style bindings | -- window bringer emacs-style bindings | ||
| - | , ((0, xK_b), | + | , ((0, xK_b), windowPromptGoto oxyXPConfig) |
| - | , ((shiftMask, xK_b), | + | , ((shiftMask, xK_b) , windowPromptBring oxyXPConfig) |
])] | ])] | ||
++ | ++ | ||
-- hm. is this useful? | -- hm. is this useful? | ||
-- anyway, these are basically the same bindings as wind-move in emacs | -- anyway, these are basically the same bindings as wind-move in emacs | ||
| - | |||
[ ((modMask .|. controlMask, xK_Right), sendMessage $ Go R) | [ ((modMask .|. controlMask, xK_Right), sendMessage $ Go R) | ||
, ((modMask .|. controlMask, xK_Left ), sendMessage $ Go L) | , ((modMask .|. controlMask, xK_Left ), sendMessage $ Go L) | ||
| Line 232: | Line 156: | ||
} | } | ||
| - | |||
| - | |||
| - | |||
myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $ | myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $ | ||
-- mod-button1, Set the window to floating mode and move by dragging | -- mod-button1, Set the window to floating mode and move by dragging | ||
| Line 247: | Line 168: | ||
, ((modMask, button5), (\_ -> windows W.focusDown)) | , ((modMask, button5), (\_ -> windows W.focusDown)) | ||
-- cycle through workspaces | -- cycle through workspaces | ||
| - | , ((controlMask .|. modMask, button5), (\_ -> moveTo Next | + | , ((controlMask .|. modMask, button5), (\_ -> moveTo Next (WSIs (liftM (not .) isVisible)))) |
| - | , ((controlMask .|. modMask, button4), (\_ -> moveTo Prev | + | , ((controlMask .|. modMask, button4), (\_ -> moveTo Prev (WSIs (liftM (not .) isVisible)))) |
] | ] | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myLayout = avoidStruts $ windowNavigation $ | myLayout = avoidStruts $ windowNavigation $ | ||
toggleLayouts Full tiled | toggleLayouts Full tiled | ||
||| toggleLayouts Full (Mirror tiled) | ||| toggleLayouts Full (Mirror tiled) | ||
||| toggleLayouts Grid tabs | ||| toggleLayouts Grid tabs | ||
| + | ||| floating | ||
| + | |||
where | where | ||
-- default tiling algorithm partitions the screen into two panes | -- default tiling algorithm partitions the screen into two panes | ||
| - | tiled = | + | tiled = ResizableTall nmaster delta ratio [] |
-- The default number of windows in the master pane | -- The default number of windows in the master pane | ||
nmaster = 1 | nmaster = 1 | ||
| Line 275: | Line 187: | ||
-- Percent of screen to increment by when resizing panes | -- Percent of screen to increment by when resizing panes | ||
delta = 3/100 | delta = 3/100 | ||
| - | -- | + | -- tabbed layout |
| - | + | ||
tabs = decoration shrinkText oxyTheme Tabbed Simplest | tabs = decoration shrinkText oxyTheme Tabbed Simplest | ||
| + | -- floating layout with mouse resize | ||
| + | floating = simpleFloat' shrinkText oxyTheme | ||
| + | |||
-- Configuration for Tabbed | -- Configuration for Tabbed | ||
| - | |||
oxyTheme :: Theme | oxyTheme :: Theme | ||
oxyTheme = defaultTheme { inactiveBorderColor = "#000" | oxyTheme = defaultTheme { inactiveBorderColor = "#000" | ||
| Line 289: | Line 202: | ||
, activeTextColor = "#222" | , activeTextColor = "#222" | ||
, fontName = "xft:Corbel-10" | , fontName = "xft:Corbel-10" | ||
| + | -- This font can be found in the package ttf-alee | ||
| + | -- on debian-systems | ||
| + | -- , fontName = "-*-Bandal-*-*-*-*-12-*-*-*-*-*-*-*" | ||
, decoHeight = 16 | , decoHeight = 16 | ||
, urgentColor = "#000" | , urgentColor = "#000" | ||
| Line 294: | Line 210: | ||
} | } | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myManageHook = composeAll | myManageHook = composeAll | ||
[ className =? "MPlayer" --> doFloat | [ className =? "MPlayer" --> doFloat | ||
| Line 316: | Line 217: | ||
<+> manageDocks | <+> manageDocks | ||
| - | |||
| - | |||
-- Status bars and logging | -- Status bars and logging | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
myLogHook h = dynamicLogWithPP $ oxyPP h | myLogHook h = dynamicLogWithPP $ oxyPP h | ||
oxyPP :: Handle -> PP | oxyPP :: Handle -> PP | ||
| - | |||
oxyPP h = defaultPP { ppCurrent = wrap "<fc=black,aquamarine3> " " </fc>" | oxyPP h = defaultPP { ppCurrent = wrap "<fc=black,aquamarine3> " " </fc>" | ||
, ppSep = "" | , ppSep = "" | ||
| Line 360: | Line 250: | ||
xmonad $ withUrgencyHook NoUrgencyHook $ defaults pipe | xmonad $ withUrgencyHook NoUrgencyHook $ defaults pipe | ||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
| - | |||
defaults pipe = defaultConfig { | defaults pipe = defaultConfig { | ||
-- simple stuff | -- simple stuff | ||
Revision as of 16:18, 17 February 2008
Some of the other scripts I use can be found here (outdated at the moment).
import XMonad import System.Exit import XMonad.Core import qualified XMonad.StackSet as W import qualified Data.Map as M import XMonad.Layout.Tabbed import XMonad.Layout.ResizableTile import XMonad.Hooks.DynamicLog import XMonad.Actions.CycleWS import XMonad.Actions.Submap import XMonad.Actions.WindowBringer import XMonad.Hooks.ManageDocks import XMonad.Actions.DwmPromote import XMonad.Layout.WindowNavigation import XMonad.Hooks.UrgencyHook import XMonad.Layout.ToggleLayouts import XMonad.Layout.Grid import XMonad.Util.Run (spawnPipe) import System.IO (Handle, hPutStrLn) import Monad import XMonad.Prompt import XMonad.Prompt.Shell import XMonad.Prompt.Window import XMonad.Layout.SimpleFloat import XMonad.Layout.Decoration import XMonad.Layout.Simplest import XMonad.Util.WorkspaceCompare import XMonad.Prompt.Theme import XMonad.Layout.WindowArranger import XMonad.Actions.MouseResize myTerminal = "urxvt" myBorderWidth = 1 myModMask = mod4Mask myNumlockMask = mod2Mask myWorkspaces = ["1:web", "2:emacs" ,"3:gnus", "4:music", "5:shells"] ++ map show [6 .. 9 :: Int] myNormalBorderColor = "#111" myFocusedBorderColor = "aquamarine3" myDefaultGaps = [(0,0,0,0),(0,20,0,0)] myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $ -- launch a terminal [ ((modMask .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf) -- close focused window , ((modMask .|. shiftMask, xK_c ), kill) -- Rotate through the available layout algorithms , ((modMask, xK_space ), sendMessage NextLayout) -- Reset the layouts on the current workspace to default , ((modMask .|. shiftMask, xK_space ), setLayout $ XMonad.layoutHook conf) -- Resize viewed windows to the correct size , ((modMask, xK_n ), refresh) -- Move focus to the next window , ((modMask, xK_Tab ), windows W.focusDown) , ((modMask, xK_j ), windows W.focusDown) -- Move focus to the previous window , ((modMask .|. shiftMask, xK_Tab ), windows W.focusUp ) , ((modMask, xK_k ), windows W.focusUp ) -- Move focus to the master window , ((modMask, xK_m ), windows W.focusMaster ) -- Swap the focused window with the next window , ((modMask .|. shiftMask, xK_j ), windows W.swapDown ) -- Swap the focused window with the previous window , ((modMask .|. shiftMask, xK_k ), windows W.swapUp ) -- Shrink the master area , ((modMask, xK_h ), sendMessage Shrink) -- Expand the master area , ((modMask, xK_l ), sendMessage Expand) -- Push window back into tiling , ((modMask, xK_t ), withFocused $ windows . W.sink) -- Increment the number of windows in the master area , ((modMask , xK_comma ), sendMessage (IncMasterN 1)) -- Deincrement the number of windows in the master area , ((modMask , xK_period), sendMessage (IncMasterN (-1))) -- Quit xmonad , ((modMask .|. shiftMask, xK_q ), io (exitWith ExitSuccess)) -- Restart xmonad , ((modMask , xK_q ), restart "xmonad" True)] ++ -- mod-[1..9], Switch to workspace N -- mod-shift-[1..9], Move client to workspace N [((m .|. modMask, k), windows $ f i) | (i, k) <- zip (XMonad.workspaces conf) [xK_1 .. xK_9] , (f, m) <- [(W.view, 0), (W.shift, shiftMask)]] ++ -- shell prompt [ ((modMask , xK_p), shellPrompt oxyXPConfig) , ((modMask , xK_o), shellPrompt oxyXPConfig) -- move window to next workspace and follow , ((modMask .|. shiftMask, xK_Right), shiftToNext >> nextWS) -- move window to previous workspace and follow , ((modMask .|. shiftMask, xK_Left), shiftToPrev >> prevWS) -- switch focus between physical screens... , ((modMask, xK_Down), nextScreen) -- ...and take the window with it , ((modMask .|. shiftMask, xK_Down), shiftNextScreen >> nextScreen) -- previous workspace , ((modMask, xK_Left), moveTo Prev (WSIs (liftM (not .) isVisible)) ) , ((modMask .|. controlMask, xK_k), moveTo Prev (WSIs (liftM (not .) isVisible)) ) -- next workspace , ((modMask, xK_Right), moveTo Next (WSIs (liftM (not .) isVisible)) ) , ((modMask .|. controlMask, xK_j), moveTo Next (WSIs (liftM (not .) isVisible)) ) -- swap screens , ((modMask, xK_s), swapNextScreen) , ((modMask, xK_Up), swapNextScreen) -- resize tiled windows vertically , ((modMask, xK_a), sendMessage MirrorShrink) , ((modMask, xK_y), sendMessage MirrorExpand) -- toggle struts , ((modMask .|. shiftMask, xK_b), sendMessage ToggleStruts) , ((modMask , xK_b), modifyGap (\i n -> let x = (XMonad.defaultGaps conf ++ repeat (0,0,0,0)) !! i in if n == x then (0,0,0,0) else x)) -- brings the currently focused window to the master area , ((modMask, xK_Return), dwmpromote) , ((modMask .|. controlMask, xK_t), themePrompt oxyXPConfig) , ((modMask .|. controlMask, xK_space), (sendMessage (Toggle "Full")) >> sendMessage (Toggle "Grid"))] ++ -- custom emacs-style keybindings -- mostly for launching applications [((modMask, xK_x), submap . M.fromList $ [ ((0, xK_e), spawn "emacsclient -s emacs -c -d $DISPLAY") , ((0, xK_f), spawn "firefox") , ((0, xK_Return), spawn "urxvt") , ((0, xK_t), spawn "~/bin/tvbrowser") -- mod-x mod-c and mod-x c close a window , ((0, xK_c), kill) , ((modMask, xK_c), kill) -- mod-x mod-x cycles focus between screens , ((modMask, xK_x), nextScreen) -- window bringer emacs-style bindings , ((0, xK_b), windowPromptGoto oxyXPConfig) , ((shiftMask, xK_b) , windowPromptBring oxyXPConfig) ])] ++ -- hm. is this useful? -- anyway, these are basically the same bindings as wind-move in emacs [ ((modMask .|. controlMask, xK_Right), sendMessage $ Go R) , ((modMask .|. controlMask, xK_Left ), sendMessage $ Go L) , ((modMask .|. controlMask, xK_Up ), sendMessage $ Go U) , ((modMask .|. controlMask, xK_Down ), sendMessage $ Go D)] -- Config for Prompt oxyXPConfig :: XPConfig oxyXPConfig = defaultXPConfig { font = "-xos4-terminus-*-*-*-*-12-*-*-*-*-*-*-*" , bgColor = "#000" , fgColor = "Aquamarine2" , fgHLight = "#000000" , bgHLight = "Aquamarine2" , borderColor = "aquamarine2" , promptBorderWidth = 1 , position = Top , height = 18 -- , historySize = 256 , defaultText = [] } myMouseBindings (XConfig {XMonad.modMask = modMask}) = M.fromList $ -- mod-button1, Set the window to floating mode and move by dragging [ ((modMask, button1), (\w -> focus w >> mouseMoveWindow w)) -- mod-button2, Raise the window to the top of the stack , ((modMask, button2), (\w -> focus w >> windows W.swapMaster)) -- mod-button3, Set the window to floating mode and resize by dragging , ((modMask, button3), (\w -> focus w >> mouseResizeWindow w)) -- you may also bind events to the mouse scroll wheel (button4 and button5) -- cycle focus , ((modMask, button4), (\_ -> windows W.focusUp)) , ((modMask, button5), (\_ -> windows W.focusDown)) -- cycle through workspaces , ((controlMask .|. modMask, button5), (\_ -> moveTo Next (WSIs (liftM (not .) isVisible)))) , ((controlMask .|. modMask, button4), (\_ -> moveTo Prev (WSIs (liftM (not .) isVisible)))) ] myLayout = avoidStruts $ windowNavigation $ toggleLayouts Full tiled ||| toggleLayouts Full (Mirror tiled) ||| toggleLayouts Grid tabs ||| floating where -- default tiling algorithm partitions the screen into two panes tiled = ResizableTall nmaster delta ratio [] -- The default number of windows in the master pane nmaster = 1 -- Default proportion of screen occupied by master pane ratio = 3/5 -- Percent of screen to increment by when resizing panes delta = 3/100 -- tabbed layout tabs = decoration shrinkText oxyTheme Tabbed Simplest -- floating layout with mouse resize floating = simpleFloat' shrinkText oxyTheme -- Configuration for Tabbed oxyTheme :: Theme oxyTheme = defaultTheme { inactiveBorderColor = "#000" , activeBorderColor = "aquamarine3" , activeColor = "aquamarine3" , inactiveColor = "DarkSlateGray4" , inactiveTextColor = "#222" , activeTextColor = "#222" , fontName = "xft:Corbel-10" -- This font can be found in the package ttf-alee -- on debian-systems -- , fontName = "-*-Bandal-*-*-*-*-12-*-*-*-*-*-*-*" , decoHeight = 16 , urgentColor = "#000" , urgentTextColor = "#63b8ff" } myManageHook = composeAll [ className =? "MPlayer" --> doFloat , className =? "Gimp" --> doFloat , resource =? "desktop_window" --> doIgnore , resource =? "kdesktop" --> doIgnore ] <+> manageDocks -- Status bars and logging myLogHook h = dynamicLogWithPP $ oxyPP h oxyPP :: Handle -> PP oxyPP h = defaultPP { ppCurrent = wrap "<fc=black,aquamarine3> " " </fc>" , ppSep = "" , ppWsSep = "" , ppVisible = wrap "<fc=black,DarkSlateGray4> " " </fc>" , ppLayout = \x -> "<fc=aquamarine2,black> :: " ++ x ++ " </fc>" , ppTitle = \x -> case length x of 0 -> "" _ -> "<fc=DarkSlateGray3,black>[ " ++ shorten 40 x ++ " ] </fc>" -- if a workspace has a tag, show it, even if it has no windows , ppHiddenNoWindows = \x -> case length x of 1 -> "" _ -> wrap "<fc=#aaa,black> " " </fc>" x , ppHidden = wrap "<fc=#aaa,black> " " </fc>" --, ppUrgent = wrap "^bg(#ffb90f)^fg(#d02090)" "" , ppOutput = hPutStrLn h } myFocusFollowsMouse :: Bool myFocusFollowsMouse = True ------------------------------------------------------------------------ -- Now run xmonad with all the defaults we set up. -- Run xmonad with the settings you specify. No need to modify this. -- main = do pipe <- spawnPipe "xmobar" xmonad $ withUrgencyHook NoUrgencyHook $ defaults pipe defaults pipe = defaultConfig { -- simple stuff terminal = myTerminal, focusFollowsMouse = myFocusFollowsMouse, borderWidth = myBorderWidth, modMask = myModMask, numlockMask = myNumlockMask, workspaces = myWorkspaces, normalBorderColor = myNormalBorderColor, focusedBorderColor = myFocusedBorderColor, defaultGaps = myDefaultGaps, -- key bindings keys = myKeys, mouseBindings = myMouseBindings, -- hooks, layouts layoutHook = myLayout, manageHook = myManageHook, logHook = myLogHook pipe }
