X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=25f46843905f0823c507c4500f3dd9364eb5d296;hb=c7c1641b81359f269d6ca303edaec89416458fc9;hp=1feb7ad68dad1fe19aa7a8dfe408f5e125396ac4;hpb=670c8245b07f95ac6e99da7bfc5f5eb45e8efbff;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index 1feb7ad..25f4684 100755 --- a/setup.sh +++ b/setup.sh @@ -13,9 +13,20 @@ if installed xmonad; then 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