Starting multiple applications in Ubuntu Unity
Posted
by
Black
on Super User
See other posts from Super User
or by Black
Published on 2012-10-04T05:24:52Z
Indexed on
2012/10/04
21:42 UTC
Read the original article
Hit count: 258
I would like to start multiple GUI applications with a single script or command in Ubuntu 12.
By now, I have a shell script that
- starts an application in the foreground and waits for the termination of the application
- afterwards starts several applications (like browser, mailer, IRC client) in the background
The script is working, however all the applications are getting the same icon and are treated like different windows of one application, i.e. the script.
Is there a way to start applications from a script, that makes Unity display the icons of the applications, e.g. the Thunderbird icon, instead of a single default icon for the script?
The script looks like this:
! /bin/bash
wait for termination...
/usr/bin/libreoffice path/to/document
in background
/usr/bin/thunderbird & /usr/bin/pidgin &
© Super User or respective owner