X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=blobdiff_plain;f=os%2Fsetup.sh;fp=os%2Fsetup.sh;h=dc3a3417508f252cebe56a0f1f4762d3abc2e48f;hp=0000000000000000000000000000000000000000;hb=ae5f25d9ebf147d2c5d724a0902d91beff577ca3;hpb=0e1f3846c77e6b0ca5d9215b07f6e587cedd19d9 diff --git a/os/setup.sh b/os/setup.sh new file mode 100755 index 0000000..dc3a341 --- /dev/null +++ b/os/setup.sh @@ -0,0 +1,41 @@ +#!/bin/sh + +# 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 -eu + +. ../lib.sh + + +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 test x"`os`" = xdebian; then + # Necessary as aptitude rewrites the config file on every start. + generate debian/aptitude/config .in cat + # 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