Topic: hdspmixer to start automatically using Ubuntu Jaunty Jackalope

After extensive research I got my Multiface working in Linux.

Though one thing is not 100% comfortable jet:

To make use of the Multiface I have to always after starting up the system run the hdspmixer application first. Otherwise everything will stay mutet. Is there a way to automatically run that application on startup so I will not have to do that manually every time?

I tried to include the command "hdspmixer" at /etc/rc.local. But that does not work!

Re: hdspmixer to start automatically using Ubuntu Jaunty Jackalope

If you still haven't found out, my solution was just to add it to startup programs via System->Settings>startup programs. Here you can add the HDSPmixer. The command is just "hdspmixer".

Re: hdspmixer to start automatically using Ubuntu Jaunty Jackalope

hi!
i had the same problem, your tip is working very well,
but the hdspwindow stays (of course) open.

Does anyone know how to close it automaticaly one second later ?

Re: hdspmixer to start automatically using Ubuntu Jaunty Jackalope

hello

i do it with a shell script:

[c]#!/bin/sh
hdsploader
hdspmixer & sleep 3 && killall hdspmixer[/c]

save this script somewhere and add it to startup-programms

Re: hdspmixer to start automatically using Ubuntu Jaunty Jackalope

Thanks a lot eni. It works perfectly!

Never thought that I could just killall hdspmixer without losing the sound.