diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-11-10 12:12:46 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-11-10 12:12:46 +0100 |
commit | 7351f095ece6f990c750fd7b0924c1c6f4db9ba4 (patch) | |
tree | c054bf347ca390eca736af7bcbf31c473aa916c8 | |
parent | ac94c9f1388a4612c4521649c984d1de63011895 (diff) |
More comments + xrandr DPI
-rwxr-xr-x | xorg/xinitrc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/xorg/xinitrc b/xorg/xinitrc index b815b77..b641b80 100755 --- a/xorg/xinitrc +++ b/xorg/xinitrc @@ -1,12 +1,20 @@ #!/bin/bash WM='xmonad' +# SSH Key keychain --clear -q ~/.ssh/id_rsa source ~/.keychain/`hostname`-sh > /dev/null -feh --bg-tile ~/media/pictures/wallpaper/$(ls ~/media/pictures/wallpaper/ | sed -n $((RANDOM%$(ls ~/media/pictures/wallpaper/ | wc -l)+1))p) + +# Wallpaper + # feh --bg-tile ~/media/pictures/wallpaper/$(ls ~/media/pictures/wallpaper/ | sed -n $((RANDOM%$(ls ~/media/pictures/wallpaper/ | wc -l)+1))p) + +# Applications blueman-applet & wicd-client & xfce4-panel & xfdesktop & +# DPI +xrandr --dpi 86 + exec $WM |