X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=e0c0b5fe33936fb8face1dafb3f6817c57bf55bf;hb=2dd1ca8953e9b37656b20fc3c3152613fe27fecb;hp=1feb7ad68dad1fe19aa7a8dfe408f5e125396ac4;hpb=7581f733804cc654ee077a21b5d18a8fd2212685;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index 1feb7ad..e0c0b5f 100755 --- a/setup.sh +++ b/setup.sh @@ -13,9 +13,21 @@ 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", $_; + print "Rxvt", $_; + } 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