Welcome to Linux Forums! With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.
Find the answer to your Linux question:
New to Linux Forums? Register here for free!
    Linux Forums > GNU Linux Zone > Linux Desktop / X-Windows > Anything as "complete" as GNOME?

Forgot Password?
 Linux Desktop / X-Windows   Anything X. Gnome, KDE, remote desktop's, XGames etc.

Site Navigation
Linux Articles
Linux Forums
Linux Downloads
Linux Hosting
Free Magazines
Job Board
IRC Chat
RSS Feeds


Linux Forum Topics
Linux Forums
Your Distro
Linux Resources
GNU Linux Zone
The Community
Reply
 
Thread Tools Display Modes
Old 09-21-2009   #1 (permalink)
Just Joined!
 
Join Date: Jul 2008
Location: California, USA
Posts: 95
Anything as "complete" as GNOME?

So, I'm using Ubuntu 9.04 on an eee 1000ha, and have been searching for a light-weight desktop with all of the nifty features of GNOME, among them, automatic network setup on login, power monitoring, and media-keyboard support (the eee has a special modifier key for this, and allows volume up and down). I've played with a few DEs, specifically XFCE, Fluxbox and LXDE, the latter two for a couple minutes after being unable to find out online about how to configure wireless properly, and I'm not a big fan of how Fluxbox looks. I stopped using XFCE because there was an extra 20MB of RAM being used in the XFCE session that wasn't used in the GNOME session, and there was no volume control.

For the most part, I'm looking for DEs or Window Managers in the Ubuntu repositories, or with an available DEB package, as I'm not comfortable with the idea of compiling the main part of the system I'll be using. Any recommendations?
arinlares is offline  


Reply With Quote
Old 09-21-2009   #2 (permalink)
Linux Guru
 
reed9's Avatar
 
Join Date: Feb 2009
Location: Boston, MA
Posts: 2,202
Outside of KDE, there is no other "complete" desktop environment. Window managers are just that, they manage the windows. You can get most the functionality of GNOME using other programs though.

I use openbox with the xfce power manager, and gigolo for remote filesystem support. Media keys have to be mapped by hand, but it isn't hard. I use Ubuntu's new notification system with a script I found online to an on-screen volume display. You can see it here in the upper right hand corner.



The volume script
Code:
#!/bin/sh

usage="usage: $0 -c {up|down|mute} [-i increment] [-m mixer]"
command=
increment=5%
mixer=Master

while getopts i:m:h o
do case "$o" in
    i) increment=$OPTARG;;
    m) mixer=$OPTARG;;
    h) echo "$usage"; exit 0;;
    ?) echo "$usage"; exit 0;;
esac
done

shift $(($OPTIND - 1))
command=$1

if [ "$command" = "" ]; then
    echo "usage: $0 {up|down|mute} [increment]"
    exit 0;
fi

display_volume=0

if [ "$command" = "up" ]; then
    display_volume=$(amixer set $mixer $increment+ unmute | grep -m 1 "%]" | cut -d "[" -f2|cut -d "%" -f1)
fi

if [ "$command" = "down" ]; then
    display_volume=$(amixer set $mixer $increment- unmute | grep -m 1 "%]" | cut -d "[" -f2|cut -d "%" -f1)
fi

icon_name=""

if [ "$command" = "mute" ]; then
    if amixer get Master | grep "\[on\]"; then
        display_volume=0
        icon_name="notification-audio-volume-muted"
        amixer set $mixer mute
    else
        display_volume=$(amixer set $mixer unmute | grep -m 1 "%]" | cut -d "[" -f2|cut -d "%" -f1)
    fi
fi

if [ "$icon_name" = "" ]; then
    if [ "$display_volume" = "0" ]; then
        icon_name="notification-audio-volume-off"
    else
        if [ "$display_volume" -lt "33" ]; then
            icon_name="notification-audio-volume-low"
        else
            if [ "$display_volume" -lt "67" ]; then
                icon_name="notification-audio-volume-medium"
            else
                icon_name="notification-audio-volume-high"
            fi
        fi
    fi
fi
notify-send " " -i $icon_name -h int:value:$display_volume -h string:synchronous:volume
I have it saved in /usr/local/bin as vol.sh and then the openbox keybindings are
Code:
<!-- Multimedia Hotkeys -->
    <keybind key="XF86AudioMute">
      <action name="Execute">
        <command>/usr/local/bin/vol.sh mute</command>
      </action>
    </keybind>

    <keybind key="XF86AudioRaiseVolume">
      <action name="Execute">
        <command>/usr/local/bin/vol.sh up</command>
      </action>
    </keybind>

    <keybind key="XF86AudioLowerVolume">
      <action name="Execute">
        <command>/usr/local/bin/vol.sh down</command>
      </action>
    </keybind>
  </keyboard>

Last edited by reed9; 09-21-2009 at 03:29 AM..
reed9 is online now   Reply With Quote
Old 09-21-2009   #3 (permalink)
Linux Guru
 
reed9's Avatar
 
Join Date: Feb 2009
Location: Boston, MA
Posts: 2,202
Come to think of it, you might be interested in Crunchbang Linux, if you like Ubuntu but want a lighter desktop.
reed9 is online now   Reply With Quote
Old 09-21-2009   #4 (permalink)
Just Joined!
 
Join Date: Jul 2008
Location: California, USA
Posts: 95
Ah, man... I'm away from home for a month or so. I wish I had brought my install USB. I could check that out. I noticed Crunchbang uses Openbox. Might I be able to fill in some stuff (volume, networking) with GNOME services?

And, I thought GNOME was a desktop environment? Or are some of the things simply Ubuntu-specific?
arinlares is offline   Reply With Quote
Old 09-21-2009   #5 (permalink)
Trusted Penguin
 
daark.child's Avatar
 
Join Date: Apr 2006
Location: South Yorks, UK
Posts: 4,067
GNOME is indeeed a desktop environment, just like KDE and to some extent XFCE. Most distros customise the DE's, so GNOME in Ubuntu is not exactly the same as GNOME in Fedora.
daark.child is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Free Magazines
Run Your Own Web Server Using Linux & Apache - Free 191 Page Preview
Learn about everything you'll need to build and maintain your Linux servers, and to deploy Web applications to them.
subscribe
Open Source Security Myths Dispelled
Dispel the five major myths surrounding Open Source Security and gain the tools necessary to make a truly informed decision for your IT organization
subscribe
InformationWeek
InformationWeek is the only newsweekly you'll need to stay on top of the latest developments in information technology.
subscribe



All times are GMT. The time now is 04:09 PM.






© 2000 - 2009 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.3.0 RC2