diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-04-20 13:10:56 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-04-20 13:10:56 +0200 |
commit | cffff4ff003fb9f50a71e281ed7a7947c65fa040 (patch) | |
tree | 8de5cbdd34bb9861582c746a172da022b75b9e30 /xorg | |
parent | 78ad48c327242c01b2f80051403dba9b903385fd (diff) |
Several changes
Diffstat (limited to 'xorg')
-rwxr-xr-x | xorg/xinitrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/xinitrc b/xorg/xinitrc index c9a4cf2..af1599c 100755 --- a/xorg/xinitrc +++ b/xorg/xinitrc @@ -1,7 +1,7 @@ #!/bin/bash WM='fvwm2' -WALLPAPER='media/bilder/wallpaper/wood_3.png' +WALLPAPER='media/bilder/wallpaper/leaf.jpg' setxkbmap de neo xset +fp /usr/share/fonts/local @@ -13,7 +13,7 @@ if [ -e /usr/bin/xrandr ]; then fi fi -if [ -e "$WALLPAPER" -a /usr/bin/feh]; then +if [ -e "$WALLPAPER" ] && [ -e /usr/bin/feh ]; then feh --bg-scale $WALLPAPER fi |