]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - os/setup.sh
Move to os/ in preparation for merge into new dotfiles repository
[config/dotfiles.git] / os / setup.sh
diff --git a/os/setup.sh b/os/setup.sh
new file mode 100755 (executable)
index 0000000..dc3a341
--- /dev/null
@@ -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 <http://www.gnu.org/licenses/>.
+
+
+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