]> git.parisson.com Git - telecaster-cgi.git/commitdiff
add startup for fluxbox 1.1.1 (ubuntu maverick)
authoryomguy <yomguy@parisson.com>
Tue, 16 Nov 2010 16:02:00 +0000 (16:02 +0000)
committeryomguy <yomguy@parisson.com>
Tue, 16 Nov 2010 16:02:00 +0000 (16:02 +0000)
conf/etc/telecaster/home/fluxbox/startup.ubuntu [new file with mode: 0644]

diff --git a/conf/etc/telecaster/home/fluxbox/startup.ubuntu b/conf/etc/telecaster/home/fluxbox/startup.ubuntu
new file mode 100644 (file)
index 0000000..4a5b2cb
--- /dev/null
@@ -0,0 +1,60 @@
+#!/bin/sh
+#
+# fluxbox startup-script:
+#
+# Lines starting with a '#' are ignored.
+
+# Change your keymap:
+xmodmap "/home/telecaster/.Xmodmap"
+
+# Applications you want to run with fluxbox.
+# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
+#
+# unclutter -idle 2 &
+# wmnd &
+# wmsmixer -w &
+# idesk &
+
+# And last but not least we start fluxbox.
+# Because it is the last app you have to run it with ''exec'' before it.
+
+fluxbox &
+# or if you want to keep a log:
+# exec fluxbox -log "/home/telecaster/.fluxbox/log"
+#!/bin/sh
+# Ensure the XPATH variable is set appropriately to the Linux distribution's Xvfb installation path.
+
+fbpid=$!
+
+sleep 1
+
+{
+pid=`pgrep jack-rack`
+
+if [ ! $pid = "" ]; then 
+ sleep 1
+else
+ jack-rack -n /etc/telecaster/eq_comp_limit_02.rack &
+ sleep 10
+ jack_connect system:capture_1 jack_rack:in_1
+ jack_connect system:capture_2 jack_rack:in_2
+fi
+
+qjackctl &
+
+edcast_jack -c /etc/telecaster/edcast_jack_local.cfg -n LIVE -p jack_rack &
+sleep 3
+
+# MONO setup
+jack_disconnect jack_rack:out_2 LIVE:in_2
+jack_connect jack_rack:out_1  LIVE:in_1
+jack_connect jack_rack:out_1  LIVE:in_2
+
+# STEREO setup
+#jack_connect jack_rack:out_1  LIVE:in_1
+#jack_connect jack_rack:out_2  LIVE:in_2
+
+echo "ok" > /tmp/tt
+} &
+
+wait $fbpid