In order to choose between what type of app indicators to use for a program, I need to detect whether I'm in a Unity desktop or not. Is this possible? Is it possible when I don't have access to the environment?

link|improve this question

2  
Found this: askubuntu.com/questions/70296/… – wormsparty Jan 5 at 12:53
I've edited my question, I may not have access to the environment, so that is not a complete solution. – Tom Medley Jan 5 at 13:28
Another way would be to check if a process named 'unity' is running. I don't think there's a cross-platform way to do this. For Linux, you may want to look at: stackoverflow.com/questions/939778/… – wormsparty Jan 5 at 13:47
feedback

1 Answer

Just shell execute ps aux | grep unity, this is cross-plattform for linux. Even works on ARM cores.

On my 11.04 Ubuntu running unity it returns unity-2d-panel, unity-2d-launcher and more processes. Can't confirm if this is true on every linux platform.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.