Skip to content

Commit

Permalink
Further tweaks for xmonad and urxvt
Browse files Browse the repository at this point in the history
  • Loading branch information
duganchen committed Aug 30, 2011
1 parent 8996d69 commit 7483f41
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .Xresources
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ Xft.lcdfilter: lcddefault
Xft.rgba: rgb
Xft.autohint: 0

URxvt.font: xft:Inconsolata:pixelsize=15
URxvt.font: xft:Inconsolata:pixelsize=18
URxvt.saveLines: 65535
URxvt.scrollBar: false
URxvt.reverseVideo: true
URxvt.depth: 32
URxvt*cursorUnderline: true
URxvt*transparent: true
URxvt*shading: 80
URxvt*cusorBlink: false

Rxvt.cursorBlink: true
Rxvt.visualBell: true
Rxvt*cursorBlink: true
Rxvt*visualBell: true
2 changes: 1 addition & 1 deletion .xinitrc
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ fi
nvidia-settings --load-config-only
wicd-client &
dropbox start
trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 10 --transparent true --tint 0x191970 --height 18 &
nitrogen --restore
xsetroot -cursor_name left_ptr
tint2 &

# Start the window manager:
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
Expand Down
9 changes: 8 additions & 1 deletion .xmonad/xmonad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,12 @@ import XMonad.Hooks.DynamicLog
import XMonad.Util.EZConfig
import XMonad.Hooks.EwmhDesktops

main = xmonad $ ewmh defaultConfig `additionalKeysP` [("<Print>", spawn "scrot -e 'mv $f ~/Pictures/screenshots'")]
main = xmonad $ ewmh defaultConfig
{
terminal = "urxvt"
}
`additionalKeysP`
[
("<Print>", spawn "scrot -e 'mv $f ~/Pictures/screenshots'")
]

0 comments on commit 7483f41

Please sign in to comment.