Blob Blame History Raw
--- build/unix/uqm.in~	2003-08-10 20:58:47.000000000 +0300
+++ build/unix/uqm.in	2003-09-06 22:06:50.000000000 +0300
@@ -1,4 +1,15 @@
 #!/bin/sh
+
 # Wrapper script for starting The Ur-Quan Masters
-"@INSTALL_LIBDIR@uqm/uqm" "--contentdir=@INSTALL_SHAREDIR@uqm/content" "$@"
 
+# Source system default configuration
+if [ -e "/etc/uqm.conf" ]; then
+  . "/etc/uqm.conf"
+fi
+
+# Source per-user configuration
+if [ -e "$HOME/.uqm/uqm.conf" ]; then
+  . "$HOME/.uqm/uqm.conf"
+fi
+
+"@INSTALL_LIBDIR@uqm/uqm" "--contentdir=@INSTALL_SHAREDIR@uqm/content" $UQM_OPTS "$@"