Xmonad/Config archive/lithis's xmonad.hs
From HaskellWiki
< Xmonad | Config archive(Difference between revisions)
(Updated my config.) |
m (Whitespace.) |
||
| (One intermediate revision not shown.) | |||
| Line 21: | Line 21: | ||
import Data.Ratio | import Data.Ratio | ||
import System.IO (hPutStrLn) | import System.IO (hPutStrLn) | ||
| + | import GHC.IOBase (Handle) | ||
main :: IO () | main :: IO () | ||
| Line 32: | Line 33: | ||
, manageHook = manageDocks | , manageHook = manageDocks | ||
, modMask = mod4Mask | , modMask = mod4Mask | ||
| - | + | , borderWidth = 2 | |
, keys = \c -> myKeys c `M.union` keys defaultConfig c | , keys = \c -> myKeys c `M.union` keys defaultConfig c | ||
, logHook = dynamicLogWithPP (myPP xmobar) | , logHook = dynamicLogWithPP (myPP xmobar) | ||
| Line 48: | Line 49: | ||
delta = 3/100 | delta = 3/100 | ||
| + | myPP :: Handle -> PP | ||
myPP din = defaultPP | myPP din = defaultPP | ||
{ ppCurrent = xmobarColor focusColor "" | { ppCurrent = xmobarColor focusColor "" | ||
| Line 59: | Line 61: | ||
} | } | ||
| + | myTheme :: Theme | ||
myTheme = defaultTheme | myTheme = defaultTheme | ||
{ activeColor = lightBackgroundColor | { activeColor = lightBackgroundColor | ||
| Line 72: | Line 75: | ||
} | } | ||
| + | myXPConfig :: XPConfig | ||
myXPConfig = defaultXPConfig | myXPConfig = defaultXPConfig | ||
{ font = myFont | { font = myFont | ||
| Line 89: | Line 93: | ||
urgentColor = "#ffc000" | urgentColor = "#ffc000" | ||
| - | myKeys (XConfig {modMask = | + | myKeys conf@(XConfig {XMonad.modMask = modMask, workspaces = ws}) = M.fromList $ |
| - | [ (( | + | [ ((modMask, xK_Return), promote) |
| - | , (( | + | , ((modMask, xK_b), sendMessage ToggleStruts) |
| - | , (( | + | , ((modMask .|. controlMask, xK_x), shellPrompt myXPConfig) |
| - | , (( | + | , ((modMask .|. controlMask, xK_s), sshPrompt myXPConfig) |
| - | , (( | + | , ((modMask, xK_z), warpToWindow 1 1) |
| - | , (( | + | , ((modMask, xK_q), recompile True >> restart "xmonad" True) |
| + | , ((modMask .|. controlMask, xK_l), spawn "exec xlogo -render -fg `randomdarkcolor` -bg `randomdarkcolor`") -- For testing layouts. | ||
] | ] | ||
</haskell> | </haskell> | ||
[[Category:XMonad configuration]] | [[Category:XMonad configuration]] | ||
Current revision
import XMonad hiding (Tall) import XMonad.Actions.Promote import XMonad.Actions.UpdatePointer import XMonad.Actions.Warp import XMonad.Hooks.DynamicLog import XMonad.Hooks.ManageDocks import XMonad.Hooks.UrgencyHook import XMonad.Layout.LayoutHints import XMonad.Layout.HintedTile import XMonad.Layout.NoBorders import XMonad.Layout.Spiral import XMonad.Layout.Tabbed import XMonad.Prompt import XMonad.Prompt.Shell import XMonad.Prompt.Ssh import XMonad.Util.Run (spawnPipe) import qualified Data.Map as M import Data.Ratio import System.IO (hPutStrLn) import GHC.IOBase (Handle) main :: IO () main = do xmobar <- spawnPipe "xmobar" xmonad $ withUrgencyHook NoUrgencyHook $ defaultConfig { normalBorderColor = backgroundColor , focusedBorderColor = focusColor , terminal = "$XTERMCMD" , layoutHook = myLayout , manageHook = manageDocks , modMask = mod4Mask , borderWidth = 2 , keys = \c -> myKeys c `M.union` keys defaultConfig c , logHook = dynamicLogWithPP (myPP xmobar) >> updatePointer (Relative 1 1) } where myLayout = layoutHints $ avoidStruts $ smartBorders $ hintedTile Tall ||| hintedTile Wide ||| Full ||| tabbed shrinkText myTheme ||| spiral (1 % 1) hintedTile = HintedTile nmaster delta ratio TopLeft nmaster = 1 ratio = 1/2 delta = 3/100 myPP :: Handle -> PP myPP din = defaultPP { ppCurrent = xmobarColor focusColor "" , ppVisible = xmobarColor lightTextColor "" , ppHiddenNoWindows = xmobarColor lightBackgroundColor "" , ppUrgent = xmobarColor urgentColor "" , ppSep = " · " , ppWsSep = "" , ppTitle = xmobarColor lightTextColor "" , ppOutput = hPutStrLn din } myTheme :: Theme myTheme = defaultTheme { activeColor = lightBackgroundColor , inactiveColor = backgroundColor , urgentColor = backgroundColor , activeBorderColor = textColor , inactiveTextColor = textColor , urgentTextColor = textColor , inactiveBorderColor = lightBackgroundColor , urgentBorderColor = urgentColor , activeTextColor = lightTextColor , fontName = myFont } myXPConfig :: XPConfig myXPConfig = defaultXPConfig { font = myFont , bgColor = backgroundColor , fgColor = textColor , fgHLight = lightTextColor , bgHLight = lightBackgroundColor , borderColor = lightBackgroundColor } myFont = "xft:DejaVu Sans:size=10" focusColor = "#60ff45" textColor = "#c0c0a0" lightTextColor = "#fffff0" backgroundColor = "#304520" lightBackgroundColor = "#456030" urgentColor = "#ffc000" myKeys conf@(XConfig {XMonad.modMask = modMask, workspaces = ws}) = M.fromList $ [ ((modMask, xK_Return), promote) , ((modMask, xK_b), sendMessage ToggleStruts) , ((modMask .|. controlMask, xK_x), shellPrompt myXPConfig) , ((modMask .|. controlMask, xK_s), sshPrompt myXPConfig) , ((modMask, xK_z), warpToWindow 1 1) , ((modMask, xK_q), recompile True >> restart "xmonad" True) , ((modMask .|. controlMask, xK_l), spawn "exec xlogo -render -fg `randomdarkcolor` -bg `randomdarkcolor`") -- For testing layouts. ]
