X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=25f46843905f0823c507c4500f3dd9364eb5d296;hb=c7c1641b81359f269d6ca303edaec89416458fc9;hp=9e161bde0d519ac5cf614a52de902444cb67d144;hpb=cb02687091d8be1eeed80e4ffd57f0a0c737fdf1;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index 9e161bd..25f4684 100755 --- a/setup.sh +++ b/setup.sh @@ -8,15 +8,33 @@ if installed stumpwm; then link stumpwmrc ~/.stumpwmrc fi +if installed xmonad; then + link . ~/.xmonad +fi if installed X; then - # Use settings for XTerm also for UXTerm. This prevents code duplication. - generate awk Xdefaults \ - '{ print ; if ( /^XTerm/ ) { print "U" $0 } }' - # Xdefaults uses ! as comment instead of #. - sed -i 's/^#/!/' Xdefaults + # Prevent code duplication. Term* rules are for all terminals; XTerm rules + # are for XTerm and UXTerm. At the moment XTerm and UXTerm are supported. + generate perl Xdefaults -ne \ + 'if (/^Term/) { + s/^Term//; + print "XTerm", $_; + print "UXTerm", $_; + } elsif (/^XTerm/) { + print $_; + s/^XTerm//; + print "UXTerm", $_; + } else { + print $_; + }' + # Xdefaults uses ! as comment instead of #. tmp file necessary because of + # different implementations of `sed -i`. + sed 's/^#/!/' Xdefaults > Xdefaults.tmp + mv Xdefaults.tmp Xdefaults - link xinitrc ~/.xinitrc + if [ `os` != darwin ]; then + link xinitrc ~/.xinitrc + fi link xmodmaprc ~/.xmodmaprc link Xdefaults ~/.Xdefaults fi