You are not logged in.
Pages: 1
I have frequently made launchers with other WMs that have multiple commands.
example:
/usr/bin/xcalc;/usr/bin/xclock
I can't figure out how to do this in xfce. I've tried checking the run in terminal box
and /usr/bin/xcalc & /usr/bin/xclock &
but no luck
To be clear, I'm trying to make one icon that will launch 2 apps, not an icon that's a launcher menu.
Thanks.
Last edited by coldbeer (2012-02-10 23:58:16)
Offline
This launcher command seems to work:
bash -c "(/usr/bin/xcalc&);(/usr/bin/xclock&)"
Mark solved threads as [SOLVED] to make it easier for others to find solutions.
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
That does it.
Thanks! :-)
Offline
How to do this with Steam, and SDL_AUDIODRIVER=alsa?
Starting up in my terminal with this works fine:
SDL_AUDIODRIVER=alsa steam
But to make a launcher this isn't working:
bash -c "(SDL_AUDIODRIVER=alsa&);(steam&)"
What am I doing wrong here?
Offline
SDL_AUDIODRIVER=alsa is not a program but rather a variable that is being set prior to starting steam. Try this:
bash -c "SDL_AUDIODRIVER=alsa steam"
Mark solved threads as [SOLVED] to make it easier for others to find solutions.
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
SDL_AUDIODRIVER=alsa is not a program but rather a variable that is being set prior to starting steam. Try this:
bash -c "SDL_AUDIODRIVER=alsa steam"
Thanks, this works!
Only too bad this isn't working with AWN.
Last edited by Math. (2013-01-26 17:04:29)
Offline
Pages: 1
[ Generated in 0.016 seconds, 7 queries executed - Memory usage: 547.08 KiB (Peak: 547.92 KiB) ]