Several changes while playing around with wmii and xmonad

This commit is contained in:
Stefan Ritter 2009-05-25 00:18:38 +02:00
parent 3c5d008990
commit 6d76029e87
6 changed files with 16 additions and 15 deletions

View file

@ -4,3 +4,5 @@ set timeout=2
set beep_new=yes
set edit_headers
set pager_index_lines=6
macro index ,r "T~N | ~O\nN^T~A\n" "mark all read"

View file

@ -9,8 +9,9 @@ LEFT=n
RIGHT=t
# Colors tuples: "<text> <background> <border>"
WMII_NORMCOLORS='#888888 #222222 #333333'
WMII_FOCUSCOLORS='#ffffff #285577 #4c7899'
WMII_FOCUSCOLORS='#66FF00 #101010 #66FF00'
WMII_NORMCOLORS='#EEEEEE #000000 #111111'
#WMII_BACKGROUND='#333333'
WMII_FONT='fixed'

View file

@ -1,5 +1,5 @@
#URxvt*font: xft:terminus:pixelsize=8
URxvt*font:xft:Bitstream Vera Sans Mono:pixelsize=11
URxvt*font: xft:terminus:pixelsize=8
#URxvt*font:xft:Bitstream Vera Sans Mono:pixelsize=11
URxvt*buffered: true
URxvt*internalBorder: 2

View file

@ -1,5 +1,5 @@
#!/bin/bash
WM='wmii'
WM='awesome'
# SSH KEYAGENT
keychain --clear -q ~/.ssh/id_rsa
@ -9,9 +9,9 @@ source ~/.keychain/`hostname`-sh > /dev/null
xsetbg -onroot -border black ~/pictures/wallpaper/$(ls ~/pictures/wallpaper/ | sed -n $((RANDOM%$(ls ~/pictures/wallpaper/ | wc -l)+1))p)
xscreensaver -no-splash &
#wicd-client &
#killall awesome_bar.sh
#etc/awesome_bar.sh &
wicd-client &
killall awesome_bar.sh
etc/awesome_bar.sh &
# LET'S GO
exec $WM

View file

@ -48,7 +48,7 @@ myLayout = tiled ||| Mirror tiled ||| Full
where
tiled = Tall nmaster delta ratio
nmaster = 1
ratio = 1/2
ratio = 55/100
delta = 1/100
myManageHook = composeAll

View file

@ -12,6 +12,7 @@ myNumlockMask = mod2Mask
myWorkspaces = ["1","2","3","4","5","6","7","8","9"]
myNormalBorderColor = "#dddddd"
myFocusedBorderColor = "#ff0000"
myDefaultGaps = [(0,0,0,0)]
myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
[ ((modMask, xK_Return), spawn $ XMonad.terminal conf)
@ -25,11 +26,9 @@ myKeys conf@(XConfig {XMonad.modMask = modMask}) = M.fromList $
, ((modMask, xK_m ), windows W.focusMaster )
, ((modMask .|. shiftMask, xK_r ), windows W.swapDown )
, ((modMask .|. shiftMask, xK_g ), windows W.swapUp )
, ((modMask, xK_n ), sendMessage Shrink)
, ((modMask, xK_t ), sendMessage Expand)
, ((modMask, xK_h ), withFocused $ windows . W.sink)
, ((modMask , xK_comma ), sendMessage (IncMasterN 1))
, ((modMask , xK_period), sendMessage (IncMasterN (-1)))
, ((modMask , xK_h ), sendMessage (IncMasterN 1))
, ((modMask , xK_f ), sendMessage (IncMasterN (-1)))
]
++
@ -66,10 +65,9 @@ defaults = defaultConfig {
workspaces = myWorkspaces,
normalBorderColor = myNormalBorderColor,
focusedBorderColor = myFocusedBorderColor,
defaultGaps = myDefaultGaps,
keys = myKeys,
mouseBindings = myMouseBindings,
logHook = myLogHook,
startupHook = myStartupHook
}