Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-14-2004, 09:45 AM
|
#1
|
LQ Newbie
Registered: Dec 2003
Distribution: Redhat Linux 8.0
Posts: 17
Rep:
|
Finding what the current desktop is
Hi,
Is there a consistent/robust way of finding progammatically (or via a shell script) what desktop one is running - Gnome/KDE/etc?
Thanks in advance,
Ashutosh
|
|
|
07-14-2004, 09:54 AM
|
#2
|
HCL Maintainer
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Gentoo on headless; Arch on everything that requires a GUI
Posts: 6,941
Rep: 
|
What distribution are you running? Try going to a term and running "xwmconfig"
|
|
|
07-14-2004, 10:37 AM
|
#3
|
LQ Newbie
Registered: Dec 2003
Distribution: Redhat Linux 8.0
Posts: 17
Original Poster
Rep:
|
Basically, I am trying to write a program that would use the default browser and email client on a users linux system, without having the user to specify these in my program's preferences. So, the program (or its installer) needs to have a way to find what the current desktop is, so that some appropriate way (specific to the desktop) can be used to find these default applications.
|
|
|
07-14-2004, 10:38 AM
|
#4
|
LQ Newbie
Registered: Dec 2003
Distribution: Redhat Linux 8.0
Posts: 17
Original Poster
Rep:
|
I'm sorry, but xwmconfig was not found on the system. I'm running Redhat 8.0.
|
|
|
07-14-2004, 10:40 AM
|
#5
|
HCL Maintainer
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Gentoo on headless; Arch on everything that requires a GUI
Posts: 6,941
Rep: 
|
You should edit your User CP and add your distribution so that those
trying to help you at least know what you're running.
|
|
|
07-14-2004, 11:41 AM
|
#6
|
LQ Newbie
Registered: Dec 2003
Distribution: Redhat Linux 8.0
Posts: 17
Original Poster
Rep:
|
Done.
Basically, the problem is to find programmatically (or through a shell script) what system the progme gets run on after I give it to some one.
|
|
|
07-14-2004, 06:27 PM
|
#7
|
HCL Maintainer
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Gentoo on headless; Arch on everything that requires a GUI
Posts: 6,941
Rep: 
|
You should post back how you did that so someone searching who
finds this thread can learn from your experience. That's how a communal
forum works.
|
|
|
07-15-2004, 03:19 AM
|
#8
|
Moderator
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
|
ashusharma - I don't think your program will need to know what the default browser, etc is. If your program opens an html page, it will tell the system what it wants to do, the system will see that it can handle the request, it will check to see what program it uses to do this and will open it.
Chinaman - I think the "Done" was to say that Ashusharma had amended the distro entry in the side panel. 
|
|
|
07-15-2004, 09:01 AM
|
#9
|
LQ Guru
Registered: Mar 2004
Distribution: Slackware
Posts: 6,858
|
You can use some test like :
Code:
#!/bin/bash
BROWSERLIST="mozilla konqueror galeon opera netscape"
BROWSER=
for i in $BROWSERLIST; do
if which $i 1> /dev/null 2> /dev/null; then
BROWSER=$(which $i)
break
fi
done
if [ -z "$BROWSER" ]; then
echo "No known browser was found"
else
echo "Found a workable browser : $BROWSER"
fi
|
|
|
All times are GMT -5. The time now is 09:28 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|