Difference between revisions of "Xmonad/Config archive/oxymor00n's xmonad.hs"

From HaskellWiki
Jump to navigation Jump to search
(add my xmonad.hs)
 
m
 
(7 intermediate revisions by one other user not shown)
Line 1: Line 1:
  +
Some of the other scripts I use can be found [http://sec.modprobe.de/hg/?file/ here] (outdated at the moment).
 
<haskell>
 
<haskell>
  +
-- -*- haskell -*-
--
 
  +
import Control.Monad (liftM)
-- xmonad example config file.
 
--
 
-- A template showing all available configuration hooks,
 
-- and how to override the defaults in your own xmonad.hs conf file.
 
--
 
-- Normally, you'd only override those defaults you care about.
 
--
 
 
 
import XMonad
 
import XMonad
  +
import XMonad.Core
 
import System.Exit
 
import System.Exit
 
 
import qualified XMonad.StackSet as W
 
import qualified XMonad.StackSet as W
 
import qualified Data.Map as M
 
import qualified Data.Map as M
 
import XMonad.Layout.Tabbed
 
import XMonad.Layout.Tabbed
 
import XMonad.Layout.ResizableTile
 
import XMonad.Layout.ResizableTile
import XMonad.Hooks.DynamicLog
+
import XMonad.Layout.Grid
  +
import XMonad.Layout.Magnifier
  +
import XMonad.Layout.TabBarDecoration
  +
import XMonad.Hooks.DynamicLog hiding (shorten)
 
import XMonad.Actions.CycleWS
 
import XMonad.Actions.CycleWS
import XMonad.Actions.Submap
 
import XMonad.Actions.WindowBringer
 
import XMonad.Actions.RotView
 
 
import XMonad.Hooks.ManageDocks
 
import XMonad.Hooks.ManageDocks
  +
import XMonad.Hooks.EwmhDesktops
 
import XMonad.Actions.DwmPromote
 
import XMonad.Actions.DwmPromote
import XMonad.Layout.WindowNavigation
+
import XMonad.Actions.UpdatePointer
 
import XMonad.Hooks.UrgencyHook
 
import XMonad.Hooks.UrgencyHook
import XMonad.Layout.ToggleLayouts
 
import XMonad.Layout.Grid
 
 
import XMonad.Util.Run (spawnPipe)
 
import XMonad.Util.Run (spawnPipe)
import System.IO (Handle, hPutStrLn)
+
import System.IO
  +
import XMonad.Prompt
  +
import XMonad.Prompt.Shell
  +
import XMonad.Util.WorkspaceCompare
  +
import XMonad.Util.EZConfig
  +
import XMonad.Actions.Warp
  +
import Data.Ratio
   
-- The preferred terminal program, which is used in a binding below and by
 
-- certain contrib modules.
 
--
 
 
myTerminal = "urxvt"
 
myTerminal = "urxvt"
  +
myScreenLock = "/usr/bin/gnome-screensaver-command -l"
 
-- Width of the window border in pixels.
 
--
 
 
myBorderWidth = 1
 
myBorderWidth = 1
 
-- modMask lets you specify which modkey you want to use. The default
 
-- is mod1Mask ("left alt"). You may also consider using mod3Mask
 
-- ("right alt"), which does not conflict with emacs keybindings. The
 
-- "windows key" is usually mod4Mask.
 
--
 
 
myModMask = mod4Mask
 
myModMask = mod4Mask
 
-- The mask for the numlock key. Numlock status is "masked" from the
 
-- current modifier status, so the keybindings will work with numlock on or
 
-- off. You may need to change this on some systems.
 
--
 
-- You can find the numlock modifier by running "xmodmap" and looking for a
 
-- modifier with Num_Lock bound to it:
 
--
 
-- > $ xmodmap | grep Num
 
-- > mod2 Num_Lock (0x4d)
 
--
 
-- Set numlockMask = 0 if you don't have a numlock key, or want to treat
 
-- numlock status separately.
 
--
 
 
myNumlockMask = mod2Mask
 
myNumlockMask = mod2Mask
  +
myWorkspaces = ["α", "β" ,"γ", "δ", "ε", "ζ", "η", "θ", "ι"]
  +
myNormalBorderColor = "#111"
  +
myFocusedBorderColor = "cadetblue3"
   
  +
myKeys = \conf -> mkKeymap conf $
-- The default number of workspaces (virtual screens) and their names.
 
  +
[ ("M-S-<Return>", spawn $ XMonad.terminal conf)
-- By default we use numeric strings, but any string may be used as a
 
  +
, ("C-S-<Esc>", spawn $ myScreenLock)
-- workspace name. The number of workspaces is determined by the length
 
  +
, ("M-C-<Esc>", spawn $ "xkill")
-- of this list.
 
  +
, ("M-<Space>", sendMessage NextLayout)
--
 
  +
, ("M-S-<Space>", setLayout $ XMonad.layoutHook conf)
-- A tagging example:
 
  +
, ("M-n", refresh)
--
 
-- > workspaces = ["web", "irc", "code" ] ++ map show [4..9]
+
, ("M-S-c", kill)
  +
, ("M-<Tab>", windows W.focusDown)
--
 
  +
, ("M-j", windows W.focusDown)
myWorkspaces = ["1:web", "2:emacs" ,"3:gnus", "4:music", "5:shells"] ++ map show [6 .. 9 :: Int]
 
  +
, ("M-S-<Tab>", windows W.focusUp)
  +
, ("M-k", windows W.focusUp)
  +
, ("M-m", windows W.focusMaster)
  +
, ("M-S-k", windows W.swapDown)
  +
, ("M-S-j", windows W.swapUp)
  +
, ("M-b", sendMessage ToggleStruts)
  +
, ("M-h", sendMessage Shrink)
  +
, ("M-l", sendMessage Expand)
  +
, ("M-t", withFocused $ windows . W.sink)
  +
, ("M-,", sendMessage (IncMasterN 1))
  +
, ("M-.", sendMessage (IncMasterN (-1)))
  +
, ("M-S-q", io (exitWith ExitSuccess))
  +
, ("M-q", restart "xmonad" True)
  +
, ("M-p", shellPrompt oxyXPConfig)
  +
, ("M-o", shellPrompt oxyXPConfig)
  +
, ("M-S-<Right>", shiftToNext >> nextWS)
  +
, ("M-S-<Left>", shiftToPrev >> prevWS)
  +
, ("M-<Down>", nextScreen)
  +
, ("M-S-<Down>", shiftNextScreen >> nextScreen)
  +
, ("M-<Left>", prevNonEmptyWS )
  +
, ("M-C-k", prevNonEmptyWS )
  +
, ("M-<Right>", nextNonEmptyWS )
  +
, ("M-C-j", nextNonEmptyWS )
  +
, ("M-s", swapNextScreen)
  +
, ("M-<Up>", swapNextScreen)
  +
, ("M-a", sendMessage MirrorShrink)
  +
, ("M-y", sendMessage MirrorExpand)
  +
, ("M-<Return>", dwmpromote)
  +
, ("M-x M-c", kill)
  +
, ("M-x c", kill)
  +
, ("M-x M-x", nextScreen)
  +
, ("M-u M-x M-x", swapNextScreen)
  +
, ("M-x e", spawn "emacsclient -c -s emacs")
  +
, ("M-x s", spawn "swiftfox")
  +
, ("M-x t", spawn "tvbrowser")
  +
, ("M-x d", spawn "deluge")
  +
, ("M-x <Return>", spawn $ XMonad.terminal conf)
  +
, ("M-w", sendMessage MagnifyMore)
  +
, ("M-e", sendMessage MagnifyLess)
  +
, ("M-<", warpToWindow (1%10) (1%10)) -- Move pointer to currently focused window
  +
]
  +
++
  +
[ (m ++ i, windows $ f j)
  +
| (i, j) <- zip (map show [1..9]) (XMonad.workspaces conf)
  +
, (m, f) <- [("M-", W.view), ("M-S-", W.shift)]
  +
]
  +
where
  +
nextNonEmptyWS = moveTo Next (WSIs (liftM (not .) isVisible))
  +
prevNonEmptyWS = moveTo Prev (WSIs (liftM (not .) isVisible))
   
  +
isVisible :: X (WindowSpace -> Bool)
-- Border colors for unfocused and focused windows, respectively.
 
  +
isVisible = do
--
 
  +
vs <- gets (map (W.tag . W.workspace) . W.visible . windowset)
myNormalBorderColor = "#444444"
 
  +
return (\w -> (W.tag w) `elem` vs)
myFocusedBorderColor = "#8fbc8f"
 
   
  +
-- Config for Prompt
-- Default offset of drawable screen boundaries from each physical
 
  +
oxyXPConfig :: XPConfig
-- screen. Anything non-zero here will leave a gap of that many pixels
 
  +
oxyXPConfig = defaultXPConfig { font = "xft:Consolas-12"
-- on the given edge, on the that screen. A useful gap at top of screen
 
  +
, bgColor = "Aquamarine3"
-- for a menu bar (e.g. 15)
 
  +
, fgColor = "black"
--
 
  +
, fgHLight = "black"
-- An example, to set a top gap on monitor 1, and a gap on the bottom of
 
  +
, bgHLight = "darkslategray4"
-- monitor 2, you'd use a list of geometries like so:
 
  +
, borderColor = "black"
--
 
  +
, promptBorderWidth = 1
-- > defaultGaps = [(18,0,0,0),(0,18,0,0)] -- 2 gaps on 2 monitors
 
  +
, position = Top
--
 
  +
, height = 24
-- Fields are: top, bottom, left, right.
 
  +
, defaultText = []
--
 
  +
}
myDefaultGaps = [(0,0,0,0)]
 
   
------------------------------------------------------------------------
 
-- Key bindings. Add, modify or remove key bindings here.
 
--
 
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 and the master window
 
, ((modMask, xK_Return), windows W.swapMaster)
 
-- 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.greedyView, 0), (W.shift, shiftMask)]]
 
++
 
--
 
-- mod-{w,e,r}, Switch to physical/Xinerama screens 1, 2, or 3
 
-- mod-shift-{w,e,r}, Move client to screen 1, 2, or 3
 
--
 
[((m .|. modMask, key), screenWorkspace sc >>= flip whenJust (windows . f))
 
| (key, sc) <- zip [xK_w, xK_e, xK_r] [0..]
 
, (f, m) <- [(W.view, 0), (W.shift, shiftMask)]]
 
++
 
[
 
-- dmenu for starting applications, changed some colors
 
((modMask, xK_p), spawn "exe=`dmenu_path | dmenu -p 'Launch:' -fn '-xos4-terminus-medium-r-normal-*-12-*-*-*-*-*-*-*' -nb '#333' -nf '#888' -sb black -sf '#a8a8ff'` && eval \"exec $exe\"")
 
-- move window to nest workspace and follow
 
, ((modMask .|. shiftMask, xK_Right), shiftNextScreen >> nextWS)
 
-- move window to previous workspace and follow
 
, ((modMask .|. shiftMask, xK_Left), shiftPrevScreen >> prevWS)
 
-- toggle workspaces
 
, ((modMask, xK_Up), toggleWS)
 
-- previous workspace
 
, ((modMask, xK_Left), rotView False)
 
-- next workspace
 
, ((modMask, xK_Right), rotView True)
 
-- resize tiled windows vertically
 
, ((modMask, xK_a), sendMessage MirrorShrink)
 
, ((modMask, xK_y), sendMessage MirrorExpand)
 
-- redefine mod-b to toggle struts
 
, ((modMask, xK_b), sendMessage ToggleStruts)
 
-- brings the currently focused window to the master area
 
, ((modMask, xK_Return), dwmpromote)
 
, ((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")
 
, ((0, xK_f), spawn "firefox")
 
, ((0, xK_o), spawn "opera")
 
, ((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
 
, ((modMask, xK_x), windows W.focusDown)
 
-- window bringer emacs-style bindings
 
, ((0, xK_b), gotoMenu)
 
, ((shiftMask, xK_b), bringMenu)
 
])]
 
++
 
-- 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)]
 
 
------------------------------------------------------------------------
 
-- Mouse bindings: default actions bound to mouse events
 
--
 
 
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 214: Line 129:
 
, ((modMask, button5), (\_ -> windows W.focusDown))
 
, ((modMask, button5), (\_ -> windows W.focusDown))
 
-- cycle through workspaces
 
-- cycle through workspaces
, ((controlMask .|. modMask, button4), (\_ -> rotView True))
+
, ((controlMask .|. modMask, button5), nextNonEmptyWS)
, ((controlMask .|. modMask, button5), (\_ -> rotView False))
+
, ((controlMask .|. modMask, button4), prevNonEmptyWS)
 
]
 
]
  +
where
  +
nextNonEmptyWS = \_ -> moveTo Next (WSIs (liftM (not .) isVisible))
  +
prevNonEmptyWS = \_ -> moveTo Prev (WSIs (liftM (not .) isVisible))
   
  +
myLayout = avoidStrutsOn[U] $ tabs
------------------------------------------------------------------------
 
  +
||| tiled
-- Layouts:
 
  +
||| Mirror tiled
 
  +
||| magnify Grid
-- You can specify and transform your layouts by modifying these values.
 
-- If you change layout bindings be sure to use 'mod-shift-space' after
 
-- restarting (with 'mod-q') to reset your layout state to the new
 
-- defaults, as xmonad preserves your old layout settings by default.
 
--
 
-- The available layouts. Note that each layout is separated by |||,
 
-- which denotes layout choice.
 
--
 
myLayout = windowNavigation $ avoidStruts $
 
toggleLayouts Full tiled
 
||| toggleLayouts Full (Mirror tiled)
 
||| toggleLayouts Grid tabs
 
 
where
 
where
 
-- default tiling algorithm partitions the screen into two panes
 
-- default tiling algorithm partitions the screen into two panes
tiled = Tall nmaster delta ratio
+
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
 
-- Default proportion of screen occupied by master pane
 
-- Default proportion of screen occupied by master pane
ratio = 3/5
+
ratio = 8 % 13
 
-- 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 = tabbed shrinkText oxyTabConfig
+
tabs = tabbed shrinkText oxyDarkTheme
  +
-- magnification in grid
  +
magnify = magnifiercz (13%10)
   
 
-- Configuration for Tabbed
 
-- Configuration for Tabbed
  +
oxyTheme :: Theme
oxyTabConfig :: TConf
 
oxyTabConfig = defaultTConf { inactiveBorderColor = "#000"
+
oxyTheme = defaultTheme { inactiveBorderColor = "#000"
, activeBorderColor = "aquamarine4"
+
, activeBorderColor = myFocusedBorderColor
, activeColor = "aquamarine3"
+
, activeColor = "aquamarine3"
, inactiveColor = "DarkSlateGray4"
+
, inactiveColor = "DarkSlateGray4"
, inactiveTextColor = "#111"
+
, inactiveTextColor = "#222"
, activeTextColor = "#000"
+
, activeTextColor = "#222"
, fontName = "xft:Bitstream Vera Sans Mono-8"
+
, fontName = "xft:Consolas-10:bold"
, tabSize = 15
+
, decoHeight = 18
  +
, urgentColor = "#000"
  +
, urgentTextColor = "#63b8ff"
  +
}
  +
  +
oxyDarkTheme :: Theme
  +
oxyDarkTheme = defaultTheme { inactiveBorderColor = "#777"
  +
, activeBorderColor = myFocusedBorderColor
  +
, activeColor = "#000"
  +
, inactiveColor = "#444"
  +
, inactiveTextColor = "aquamarine4"
  +
, activeTextColor = "aquamarine1"
  +
, fontName = "xft:Dejavu Sans Mono-8"
  +
, decoHeight = 15
 
, urgentColor = "#000"
 
, urgentColor = "#000"
 
, urgentTextColor = "#63b8ff"
 
, urgentTextColor = "#63b8ff"
}
+
}
   
------------------------------------------------------------------------
 
-- Window rules:
 
 
-- Execute arbitrary actions and WindowSet manipulations when managing
 
-- a new window. You can use this to, for example, always float a
 
-- particular program, or have a client always appear on a particular
 
-- workspace.
 
--
 
-- To find the property name associated with a program, use
 
-- > xprop | grep WM_CLASS
 
-- and click on the client you're interested in.
 
--
 
-- To match on the WM_NAME, you can use 'title' in the same way that
 
-- 'className' and 'resource' are used below.
 
--
 
 
myManageHook = composeAll
 
myManageHook = composeAll
[ className =? "MPlayer" --> doFloat
+
[ resource =? "desktop_window" --> doIgnore
, className =? "Gimp" --> doFloat
+
, className =? "ClockScreenlet.py" --> doIgnore
  +
, className =? "Deluge" --> doF (W.shift "9")
, resource =? "desktop_window" --> doIgnore
 
, resource =? "stalonetray" --> doIgnore
+
, title =? "roottail" --> doIgnore ]
, resource =? "kdesktop" --> doIgnore ]
 
 
<+> manageDocks
 
<+> manageDocks
   
 
------------------------------------------------------------------------
 
 
-- Status bars and logging
 
-- Status bars and logging
  +
myLogHook h = do
  +
ewmhDesktopsLogHook
  +
dynamicLogWithPP $ oxyPP h
  +
updatePointer (Relative (1/20) (1/20))
   
  +
oxyPP :: Handle -> PP
-- Perform an arbitrary action on each internal state change or X event.
 
  +
oxyPP h = defaultPP { ppCurrent = wrap "<fc=black,aquamarine3> " " </fc>"
-- See the 'DynamicLog' extension for examples.
 
  +
, ppSep = ""
--
 
  +
, ppWsSep = ""
-- To emulate dwm's status bar
 
  +
, ppVisible = wrap "<fc=black,DarkSlateGray4> " " </fc>"
--
 
  +
, ppLayout = \x -> "<fc=aquamarine2,black>:: "
-- > logHook = dynamicLogDzen
 
  +
++ case x of
--
 
  +
"Mirror ResizableTall" -> "MTiled"
myLogHook h = dynamicLogWithPP $ oxyPP h
 
  +
"ResizableTall" -> "Tiled"
  +
"Tabbed Bottom Simplest" -> "Tabbed"
  +
"Tabbed Simplest" -> "Tabbed"
  +
_ -> x
  +
++ "</fc> "
  +
, ppTitle = \x -> case length x of
  +
0 -> ""
  +
_ -> "<fc=DarkSlateGray3,black>[" ++ shorten 33 x ++ "]</fc>"
  +
, ppHiddenNoWindows = wrap "<fc=#aaa,black> " " </fc>"
  +
, ppHidden = wrap "<fc=#aaa,black> " " </fc>"
  +
, ppOutput = hPutStrLn h
  +
}
   
oxyPP :: Handle -> PP
+
shorten :: Int -> String -> String
  +
shorten n xs | length xs < n = xs
oxyPP h = defaultPP { ppCurrent = wrap "^bg(#000)^fg(#a8a3f7) " " ^fg(#888)^bg(#333)"
 
, ppSep = ""
+
| otherwise = (take (n - length end) xs) ++ end
  +
where
, ppWsSep = ""
 
  +
end = "…"
, ppVisible = wrap "^bg(#000)^fg(#888) " " ^bg(#333)"
 
  +
, ppLayout = \x -> "^bg(#000)^fg(#8fbc8f) :: " ++ x ++ " "
 
  +
myFocusFollowsMouse :: Bool
, ppTitle = \x -> case length x of
 
  +
myFocusFollowsMouse = True
0 -> ""
 
_ -> ":: ^fg(#a8a3f7)< " ++ (shorten 20 x) ++ " >"
 
-- if a workspace has a tag, show it, even if it has no windows
 
-- , ppHiddenNoWindows = \x -> case length x of
 
-- 1 -> ""
 
-- _ -> pad x
 
, ppHiddenNoWindows = \_ -> ""
 
, ppHidden = wrap "^bg(#333)^fg(#888) " " "
 
, ppUrgent = wrap "^bg(#ffb90f)^fg(#d02090) " " "
 
, ppOutput = hPutStrLn h
 
}
 
   
 
------------------------------------------------------------------------
 
------------------------------------------------------------------------
Line 320: Line 230:
 
--
 
--
 
main = do
 
main = do
  +
pipe <- spawnPipe "xmobar"
dzenPipe <- spawnPipe "dzen2 -w 500 -y 786 -ta l -fg '#a8a3f7' -bg '#000' -fn '-xos4-terminus-*-*-*-*-12-*-*-*-*-*-*-*' -xs 2 -e ''"
 
xmonad $ withUrgencyHook NoUrgencyHook $ defaults dzenPipe
+
xmonad $ withUrgencyHook NoUrgencyHook $ defaults pipe
   
  +
defaults pipe = defaultConfig {
-- A structure containing your configuration settings, overriding
 
-- fields in the default config. Any you don't override, will
 
-- use the defaults defined in xmonad/XMonad/Config.hs
 
--
 
-- No need to modify this.
 
--
 
defaults h = defaultConfig {
 
 
-- simple stuff
 
-- simple stuff
 
terminal = myTerminal,
 
terminal = myTerminal,
  +
focusFollowsMouse = myFocusFollowsMouse,
 
borderWidth = myBorderWidth,
 
borderWidth = myBorderWidth,
 
modMask = myModMask,
 
modMask = myModMask,
Line 338: Line 243:
 
normalBorderColor = myNormalBorderColor,
 
normalBorderColor = myNormalBorderColor,
 
focusedBorderColor = myFocusedBorderColor,
 
focusedBorderColor = myFocusedBorderColor,
defaultGaps = myDefaultGaps,
 
 
-- key bindings
 
-- key bindings
 
keys = myKeys,
 
keys = myKeys,
Line 345: Line 249:
 
layoutHook = myLayout,
 
layoutHook = myLayout,
 
manageHook = myManageHook,
 
manageHook = myManageHook,
logHook = myLogHook h
+
logHook = myLogHook pipe
 
}
 
}
  +
   
 
</haskell>
 
</haskell>

Latest revision as of 02:18, 9 October 2011

Some of the other scripts I use can be found here (outdated at the moment).

-- -*- haskell -*-
import Control.Monad (liftM)
import XMonad
import XMonad.Core
import System.Exit
import qualified XMonad.StackSet as W
import qualified Data.Map        as M
import XMonad.Layout.Tabbed
import XMonad.Layout.ResizableTile
import XMonad.Layout.Grid
import XMonad.Layout.Magnifier
import XMonad.Layout.TabBarDecoration
import XMonad.Hooks.DynamicLog hiding (shorten)
import XMonad.Actions.CycleWS
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.EwmhDesktops
import XMonad.Actions.DwmPromote
import XMonad.Actions.UpdatePointer
import XMonad.Hooks.UrgencyHook
import XMonad.Util.Run (spawnPipe)
import System.IO 
import XMonad.Prompt
import XMonad.Prompt.Shell
import XMonad.Util.WorkspaceCompare
import XMonad.Util.EZConfig
import XMonad.Actions.Warp
import Data.Ratio

myTerminal      = "urxvt"
myScreenLock    = "/usr/bin/gnome-screensaver-command -l"
myBorderWidth   = 1
myModMask       = mod4Mask
myNumlockMask   = mod2Mask
myWorkspaces    = ["α", "β" ,"γ", "δ", "ε", "ζ", "η", "θ", "ι"] 
myNormalBorderColor  = "#111"
myFocusedBorderColor = "cadetblue3"

myKeys = \conf -> mkKeymap conf $
                [ ("M-S-<Return>", spawn $ XMonad.terminal conf)
                , ("C-S-<Esc>",    spawn $ myScreenLock)
                , ("M-C-<Esc>",    spawn $ "xkill")
                , ("M-<Space>",    sendMessage NextLayout)
                , ("M-S-<Space>",  setLayout $ XMonad.layoutHook conf)
                , ("M-n",          refresh)
                , ("M-S-c",        kill)
                , ("M-<Tab>",      windows W.focusDown)
                , ("M-j",          windows W.focusDown)
                , ("M-S-<Tab>",    windows W.focusUp)
                , ("M-k",          windows W.focusUp)
                , ("M-m",          windows W.focusMaster)
                , ("M-S-k",        windows W.swapDown)
                , ("M-S-j",        windows W.swapUp)
                , ("M-b",          sendMessage ToggleStruts)
                , ("M-h",          sendMessage Shrink)
                , ("M-l",          sendMessage Expand)
                , ("M-t",          withFocused $ windows . W.sink)
                , ("M-,",          sendMessage (IncMasterN 1))
                , ("M-.",          sendMessage (IncMasterN (-1)))
                , ("M-S-q",        io (exitWith ExitSuccess))
                , ("M-q",          restart "xmonad" True)
                , ("M-p",          shellPrompt oxyXPConfig)
                , ("M-o",          shellPrompt oxyXPConfig)
                , ("M-S-<Right>",  shiftToNext >> nextWS)
                , ("M-S-<Left>",   shiftToPrev >> prevWS) 
                , ("M-<Down>",     nextScreen)
                , ("M-S-<Down>",   shiftNextScreen >> nextScreen)
                , ("M-<Left>",     prevNonEmptyWS )
                , ("M-C-k",        prevNonEmptyWS )
                , ("M-<Right>",    nextNonEmptyWS )
                , ("M-C-j",        nextNonEmptyWS )
                , ("M-s",          swapNextScreen)
                , ("M-<Up>",       swapNextScreen)
                , ("M-a",          sendMessage MirrorShrink)
                , ("M-y",          sendMessage MirrorExpand)
                , ("M-<Return>",   dwmpromote)
                , ("M-x M-c",      kill)
                , ("M-x c",        kill)
                , ("M-x M-x",      nextScreen)
                , ("M-u M-x M-x",  swapNextScreen)
                , ("M-x e",        spawn "emacsclient -c -s emacs")
                , ("M-x s",        spawn "swiftfox")
                , ("M-x t",        spawn "tvbrowser")
                , ("M-x d",        spawn "deluge")
                , ("M-x <Return>", spawn $ XMonad.terminal conf)
                , ("M-w",          sendMessage MagnifyMore)
                , ("M-e",          sendMessage MagnifyLess)
                , ("M-<",          warpToWindow (1%10) (1%10)) -- Move pointer to currently focused window
                ]
                ++
                [ (m ++ i, windows $ f j)
                    | (i, j) <- zip (map show [1..9]) (XMonad.workspaces conf)
                    , (m, f) <- [("M-", W.view), ("M-S-", W.shift)]
                ]
    where 
      nextNonEmptyWS = moveTo Next (WSIs (liftM (not .) isVisible))
      prevNonEmptyWS = moveTo Prev (WSIs (liftM (not .) isVisible))

isVisible :: X (WindowSpace -> Bool)
isVisible = do
  vs <- gets (map (W.tag . W.workspace) . W.visible . windowset)
  return (\w -> (W.tag w) `elem` vs)

-- Config for Prompt
oxyXPConfig :: XPConfig
oxyXPConfig = defaultXPConfig { font              = "xft:Consolas-12"
                              , bgColor           = "Aquamarine3"
                              , fgColor           = "black"
                              , fgHLight          = "black"
                              , bgHLight          = "darkslategray4"
                              , borderColor       = "black"
                              , promptBorderWidth = 1
                              , position          = Top
                              , height            = 24
                              , 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), nextNonEmptyWS)
    , ((controlMask .|. modMask, button4), prevNonEmptyWS)
    ]
    where 
      nextNonEmptyWS = \_ -> moveTo Next (WSIs (liftM (not .) isVisible))
      prevNonEmptyWS = \_ -> moveTo Prev (WSIs (liftM (not .) isVisible))

myLayout = avoidStrutsOn[U] $ tabs
           ||| tiled
           ||| Mirror tiled
           ||| magnify Grid
  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   = 8 % 13
     -- Percent of screen to increment by when resizing panes
     delta   = 3 % 100
     -- tabbed layout
     tabs = tabbed shrinkText oxyDarkTheme
     -- magnification in grid
     magnify = magnifiercz (13%10)

-- Configuration for Tabbed
oxyTheme :: Theme
oxyTheme = defaultTheme { inactiveBorderColor = "#000"
                        , activeBorderColor = myFocusedBorderColor
                        , activeColor = "aquamarine3"
                        , inactiveColor = "DarkSlateGray4"
                        , inactiveTextColor = "#222"
                        , activeTextColor = "#222"
                        , fontName = "xft:Consolas-10:bold"
                        , decoHeight = 18
                        , urgentColor = "#000"
                        , urgentTextColor = "#63b8ff"
                        }

oxyDarkTheme :: Theme
oxyDarkTheme = defaultTheme { inactiveBorderColor = "#777"
                            , activeBorderColor = myFocusedBorderColor
                            , activeColor = "#000"
                            , inactiveColor = "#444"
                            , inactiveTextColor = "aquamarine4"
                            , activeTextColor = "aquamarine1"
                            , fontName = "xft:Dejavu Sans Mono-8"
                            , decoHeight = 15 
                            , urgentColor = "#000"
                            , urgentTextColor = "#63b8ff"
                        }

myManageHook = composeAll
 [ resource  =? "desktop_window"    --> doIgnore
 , className =? "ClockScreenlet.py" --> doIgnore
 , className =? "Deluge"            --> doF (W.shift "9")
 , title     =? "roottail"          --> doIgnore ]
    <+> manageDocks

-- Status bars and logging
myLogHook h = do
  ewmhDesktopsLogHook
  dynamicLogWithPP $ oxyPP h 
  updatePointer (Relative (1/20) (1/20))

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>:: "
                                  ++ case x of
                                       "Mirror ResizableTall"   -> "MTiled"
                                       "ResizableTall"          -> "Tiled"
                                       "Tabbed Bottom Simplest" -> "Tabbed"
                                       "Tabbed Simplest"        -> "Tabbed"
                                       _                        -> x
                                  ++ "</fc> "
                     , ppTitle = \x -> case length x of
                                         0 -> ""
                                         _ -> "<fc=DarkSlateGray3,black>[" ++ shorten 33 x ++ "]</fc>"
                     , ppHiddenNoWindows = wrap "<fc=#aaa,black> " " </fc>"
                     , ppHidden = wrap "<fc=#aaa,black> " " </fc>"
                     , ppOutput = hPutStrLn h
                     }

shorten :: Int -> String -> String
shorten n xs | length xs < n = xs
             | otherwise     = (take (n - length end) xs) ++ end
 where
    end = "…"

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,
      -- key bindings
        keys               = myKeys,
        mouseBindings      = myMouseBindings,
      -- hooks, layouts
        layoutHook         = myLayout,
        manageHook         = myManageHook,
        logHook            = myLogHook pipe
    }