[SWLUG] Starting aumix and grip togeteher (Mandrake 8.2)
Robert McQueen
robot101 at debian.org
Mon Feb 3 16:56:06 UTC 2003
On Mon, Feb 03, 2003 at 01:33:04PM +0000, STEPHEN CONSTANTINOU wrote:
> #!/bin/sh
> #
> # $HOME/cdplay.sh
> aumix
> /usr/bin/grip
> # end of script
As people suggest, adding a & will make the command run in the
background, so the script will continue. However, running aumix in the
background is unlikely to work, because it is a console application.
Gmix can run happily in the background because it outputs to X mostly.
Hence this is more likely to do what you want:
#!/bin/sh
grip &
aumix
(I don't see why you needed the path for grip but not for aumix - I
suspect it will work without =)
Regards,
Rob
More information about the Swlug
mailing list