X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=setup.sh;h=7254f84e1de3bd257ed34b2a2602dd4f94c2159c;hb=ea9794e34ffe3de76829a8e8b0c1a98e94bca63b;hp=e78989cbdcddd8f0a12d9a6e2d357fc21d3ad2c7;hpb=7c2fd5579bbc6ecebee517b37834fa27e8ba38ab;p=config%2Fdotfiles.git diff --git a/setup.sh b/setup.sh index e78989c..7254f84 100755 --- a/setup.sh +++ b/setup.sh @@ -2,19 +2,39 @@ # Setup script for OS related configuration files. +# Copyright (C) 2009-2013 Simon Ruderich +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +set -e . ../lib.sh -if [ `os` = darwin ]; then +if test x"`os`" = xdarwin; then # Sets a custom PATH for GUI applications. mkdir -p ~/.MacOSX link darwin/environment.plist ~/.MacOSX/environment.plist fi -if [ `os` = debian ]; then +if test x"`os`" = xdebian; then # Necessary as aptitude rewrites the config file on every start. generate cat debian/aptitude/config .real # aptitude/config uses // as comment instead of #. sed -i 's|^#|//|' debian/aptitude/config link debian/aptitude ~/.aptitude + if installed reportbug; then + link debian/reportbugrc ~/.reportbugrc + fi fi