Several changes while playing around with wmii and xmonad
This commit is contained in:
parent
3c5d008990
commit
6d76029e87
6 changed files with 16 additions and 15 deletions
|
@ -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"
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
8
xinitrc
8
xinitrc
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue