X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=25f46843905f0823c507c4500f3dd9364eb5d296;hb=c7c1641b81359f269d6ca303edaec89416458fc9;hp=3c3e73c885ab8e19964da793eb9b9972f99591a7;hpb=bb017de265f3055538dd42d3047beebc69a193e7;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index 3c3e73c..25f4684 100755 --- a/setup.sh +++ b/setup.sh @@ -8,17 +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 } }' + # 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