[SOLVED] Xfce4, panel that at desktop level.

I would like to have a panel that is not always on top.
Reading around I find this solution:
First set an hidden setting on the panel:
$ xfconf-query -c xfce4-panel -p /panels/panel-1/disable-struts -t bool -s true
Find the panel ID.
$ wmctrl -l | grep xfce4-panel
0x00c00004 -1 mysticalwhatisit xfce4-panel
0x00c00020 -1 mysticalwhatisit xfce4-panel
Put the panel below (by chance as from what I understood you cannot be sure of what is the correct one...).
$ wmctrl -i -r 0x00c00020 -b add,below
It works, but the effect is lost after a xfce restart.
I found a solution about an hackish bash script executed every login, but it seems so crazy... there is really no better way to get a panel that is not always on top?
Last edited by ezzetabi (2012-03-31 07:18:24)

Well, from the lack of answers I guess there is really no other solution. So here is a small bash script that might help everyone with the same problem:
#!/bin/sh
function getPanelIdImpl() {
PANEL="`wmctrl -l | sed -n -e '/xfce4-panel$/ s_ .*$__ p' | sed -n -e $1' p'`"
function getPanelId() {
getPanelIdImpl $1
while [[ x == x$PANEL ]] ;do
sleep 0.5s
getPanelIdImpl $1
done
function putPanelDown() {
PANEL=""
getPanelId $1
wmctrl -i -r $PANEL -b add,below
#putPanelDown 1
#putPanelDown 2
Just call putPanelDown with the panels you want not always-on-top.
Last edited by ezzetabi (2012-03-30 13:27:38)

Similar Messages

  • [solved] xfce4-panel 4.8.0-1 only on one desktop

    Hello,
    xfce4-panel got updated today to version 4.8.0-1. Now I have the problem, that the panel appears only on the desktop it was started, but does not remain sticky as expected.  I'm using plain openbox without xfce stuff. I also removed the old configs, same problem.
    Any hints?
    Vlad
    PS: Set the openbox internal application settings to sticky in rc.xml:
    <application name="xfce4-panel">
            <desktop>all</desktop>
        </application>
    Now it appears on all desktops, but it should work without this. It's definitely a bug...
    Last edited by DonVla (2011-01-19 13:22:55)

    I figured out a way of solving this one .
    It seems that the problem dissappears once you run xfwm4, even if you run openbox --replace afterwards
    To fix it, I edited the file /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
    My old xfce4-sessions.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <channel name="xfce4-session" version="1.0">
    <property name="general" type="empty">
    <property name="FailsafeSessionName" type="string" value="Failsafe"/>
    </property>
    <property name="sessions" type="empty">
    <property name="Failsafe" type="empty">
    <property name="IsFailsafe" type="bool" value="true"/>
    <property name="Count" type="int" value="5"/>
    <property name="Client0_Command" type="array">
    <value type="string" value="openbox"/>
    </property>
    <property name="Client0_PerScreen" type="bool" value="false"/>
    <property name="Client1_Command" type="array">
    <value type="string" value="xfce4-panel"/>
    </property>
    <property name="Client1_PerScreen" type="bool" value="false"/>
    <property name="Client2_Command" type="array">
    <value type="string" value="Thunar"/>
    <value type="string" value="--daemon"/>
    </property>
    <property name="Client2_PerScreen" type="bool" value="false"/>
    <property name="Client3_Command" type="array">
    <value type="string" value="xfdesktop"/>
    </property>
    <property name="Client3_PerScreen" type="bool" value="false"/>
    <property name="Client4_Command" type="array">
    <value type="string" value="xfce4-settings-helper"/>
    </property>
    <property name="Client4_PerScreen" type="bool" value="false"/>
    </property>
    </property>
    <property name="splash" type="empty">
    <property name="Engine" type="string" value=""/>
    </property>
    </channel>
    My new one:
    <?xml version="1.0" encoding="UTF-8"?>
    <channel name="xfce4-session" version="1.0">
    <property name="general" type="empty">
    <property name="FailsafeSessionName" type="string" value="Failsafe"/>
    </property>
    <property name="sessions" type="empty">
    <property name="Failsafe" type="empty">
    <property name="IsFailsafe" type="bool" value="true"/>
    <property name="Count" type="int" value="6"/>
    <property name="Client0_Command" type="array">
    <value type="string" value="xfwm4"/>
    </property>
    <property name="Client0_PerScreen" type="bool" value="false"/>
    <property name="Client1_Command" type="array">
    <value type="string" value="xfce4-panel"/>
    </property>
    <property name="Client1_PerScreen" type="bool" value="false"/>
    <property name="Client2_Command" type="array">
    <value type="string" value="Thunar"/>
    <value type="string" value="--daemon"/>
    </property>
    <property name="Client2_PerScreen" type="bool" value="false"/>
    <property name="Client3_Command" type="array">
    <value type="string" value="xfdesktop"/>
    </property>
    <property name="Client3_PerScreen" type="bool" value="false"/>
    <property name="Client4_Command" type="array">
    <value type="string" value="xfce4-settings-helper"/>
    </property>
    <property name="Client4_PerScreen" type="bool" value="false"/>
    <property name="Client5_Command" type="array">
    <value type="string" value="openbox"/>
    <value type="string" value="--replace"/>
    </property>
    <property name="Client5_PerScreen" type="bool" value="false"/>
    </property>
    </property>
    <property name="splash" type="empty">
    <property name="Engine" type="string" value=""/>
    </property>
    </channel>
    What I did was change the window manager back to xfwm4 here:
    <property name="Client0_Command" type="array">
    <value type="string" value="xfwm4"/>
    </property>
    Then make openbox --replace run after that (to kill xfwm and start openbox) by adding this:
    <property name="Client5_Command" type="array">
    <value type="string" value="openbox"/>
    <value type="string" value="--replace"/>
    </property>
    <property name="Client5_PerScreen" type="bool" value="false"/>
    And lastly, make xfce recognize that last entry by changing this:
    <property name="Count" type="int" value="5"/>
    for this:
    <property name="Count" type="int" value="6"/>
    Relog after that and there you go
    Last edited by Ideka (2011-01-19 02:54:24)

  • [SOLVED] xfce4-panel/workspace with compiz/xfwm4

    Its the weird problem:
    in compiz (ccsm/general option Desktop Size)
    * Horizontal Virtual Size = 4
    * Vertical Virtual Size = 1
    * Number of Desktops =1
    in xfce (setting/workspace)
    * No of Workspace=1
    # Problem 1
    It seem `xfce's no workspace` == `compiz's no of Desktop` is hard linked
    compiz ==> xfce4 : no of workspace changes from 1 to 4
    xfce4 ==> compiz : no of workspace changes from 4 to 1
    # Problem 2
    if you change compiz's
    * Number of Desktops = 4
    The Problem 1 is solved BUT
    .. xfce4-panel starts acting weird!
    showing all the workspace windows in one panel
    Last edited by rhoit (2013-01-18 16:34:13)

    GOT # reply form IRC
    (10:13:36 PM) soreau:
    Number of Desktops should always be one. Compiz is unique from other window managers in that it uses (GL) viewports instead of desktops. (multiple desktop functionality was never actually implemented). Most DE components only support desktops, not viewports, even though it's part of the EWMH spec.

  • [SOLVED] xfce4-panel: Window buttons w/ Compiz

    Hi, I've successfully done the seemingly daunting task of getting Compiz to work with XFCE. Everything appears to be set up, got my keyboard shortcuts in order, etc., however I don't like how the xfce4-panel's Window Buttons behave when running with Compiz. I have specifically set it to show only windows visible on the current desktop (or as Compiz calls it, viewports), but it looks like it still shows all windows from all viewports, as if like it treats all of them as one big desktop. I know this is a problem with xfce4-panel still thinking that it's communicating with xfwm, but I do like to resolve this annoying pet peeve. Are there any workarounds/fixes/patches for this that could help? Thanks in advance.
    Last edited by qtcaroline22 (2012-05-17 01:53:05)

    I made Compiz autostart with XFCE using the first method with the Fusion icon as described in Compiz's Arch Wiki article. Perhaps it is related to Xfwm and Compiz running together? I'll try the other methods and see if the problem persists.
    EDIT: I fixed it, I just followed the solution on this thread and everything works perfectly now. Seems like Googling with the right keywords will almost always point me to the solution.
    Last edited by qtcaroline22 (2012-05-17 01:52:14)

  • SOLVED xfce4 panel gone

    my xfce4 panel no longer loads when I run startfce4 from the command line. I reinstalled the xfce4-panel package and the xfce4 group. restarted X and still nothing. when I go into settings->Panel manager from the menu nothing happens. can anyone point me in the right direction so I can get my panel back?
    Last edited by farkus888 (2008-10-03 08:25:39)

    I looked around and foung ./config/xfce4 in my home directory. to be safe I deleted that entire directory and all of its contents. got out of my desktop. cleared pacmans cache so that I would be pulling the packages from the web new in case it was a bad download issue. then did an in place reinstall of the entire xfce4 group, which does include xfce4-panel. when I logged back in my entire desktop was back to the defaults except I still have no panel and cannot load the panel manager to try to turn it back on.

  • [SOLVED] Xfce4 panel, no notification area

    I've just installed Fluxbox onto my Arch install and I desired a proper panel, because of the relatively few dependencies and lack of messing around I chose the xfce4-panel. However I can't seem to have a systray/notification area. If I attempt to add one to the panel I get the error
    "There is already a notification area running on this screen."
    Which there isn't, not to my knowledge anyway. After that box closes I get the message;
    "Could not open "systray" module"
    I've been looking around for a while to see if I can install said module, but to no avail.
    Any suggestions?
    Last edited by Bonner (2009-06-29 14:04:38)

    DevoidOfWindows wrote:http://bbs.archlinux.org/viewtopic.php? … 62#p345462
    Aha! I never knew that. Sorted it fine, thanks a lot!

  • [solved] xfce4-panel plugins keep crashing after update

    I've been having problems with xfce4-panel after some recent updates. Several plugins for it, like the Action Buttons, CPU graph and Notification Area keep crashing right after being added to the panel. The error message isn't very helpful, just saying the plugin in question "unexpectedly left the panel". Any ideas on how to debug this?
    Last edited by vox.cogitatio (2012-06-12 15:36:38)

    I found the problem. I was running the panel without the rest of xfce4. I thought this was doable, but apparently some applets assume you have the base packages of xfce4 installed, as the problems ceased when I installed them.

  • [SOLVED] Xfce 4.8, "no running instance of xfce4-panel has been found"

    Hello fellow Archers!
    I just upgraded my Xfce installation to version 4.8, but I have a weird problem with xfce4-panel. After upgrading the system via pacman I've rebooted, and after logging in I couldn't see the Xfce's panel anymore! Moreover, a dialog box pops up saying that "no running instance of xfce4-panel has been found". I've tried to fix this issue by launching xfce4-panel through a terminal, and then saving the session before logging out. Now when I log in, I can finally see the panel, but the pop up window keeps coming out every single time. Do you have any suggestions on what could be the issue?
    Thanks in advance!
    Last edited by Tudhalyas (2011-01-18 12:15:03)

    Behemot you'd better start a different thread. May be a different issue as this one is solved.
    isn't it supposed to start from /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml ? Here's what's in mine:
    <?xml version="1.0" encoding="UTF-8"?>
    <channel name="xfce4-session" version="1.0">
    <property name="general" type="empty">
    <property name="FailsafeSessionName" type="string" value="Failsafe"/>
    </property>
    <property name="sessions" type="empty">
    <property name="Failsafe" type="empty">
    <property name="IsFailsafe" type="bool" value="true"/>
    <property name="Count" type="int" value="5"/>
    <property name="Client0_Command" type="array">
    <value type="string" value="xfwm4"/>
    </property>
    <property name="Client0_PerScreen" type="bool" value="false"/>
    <property name="Client1_Command" type="array">
    <value type="string" value="xfce4-panel"/>
    </property>
    <property name="Client1_PerScreen" type="bool" value="false"/>
    <property name="Client2_Command" type="array">
    <value type="string" value="Thunar"/>
    <value type="string" value="--daemon"/>
    </property>
    <property name="Client2_PerScreen" type="bool" value="false"/>
    <property name="Client3_Command" type="array">
    <value type="string" value="xfdesktop"/>
    </property>
    <property name="Client3_PerScreen" type="bool" value="false"/>
    <property name="Client4_Command" type="array">
    <value type="string" value="xfce4-settings-helper"/>
    </property>
    <property name="Client4_PerScreen" type="bool" value="false"/>
    </property>
    </property>
    <property name="splash" type="empty">
    <property name="Engine" type="string" value=""/>
    </property>
    </channel>
    Last edited by rwd (2011-04-23 07:32:04)

  • [SOLVED] XFCE4 Desktop not displaying properly.

    Hello,
    I've just recently installed Arch on my laptop, and installed XFCE4 as my Desktop Environment. When I start the machine and login, I enter
    startxfce4
      When XFCE starts,  the background flickers terribly and I can just make out the little mouse in the back. Then the screen goes black. The cursor is enabled and I can use it but there's nothing to click on. Ctrl+Alt+Backspace doesn't work.
    startx
    works, and I can start XFCE from within and it shows up normally. However, when I move my cursor from the console of X to the desktop on XFCE it begins flickering again and the output on the X console is
    (xfce4-settings-helper:911): xfce4-settings-helper-WARNING **: Failed to get the _NET_NUMBER_OF_DESKTOPS property.
    xfce4-panel-Message: no valid position defined: (null)
    xfdesktop: symbol lookup error: /usr/lib/libgtk-x11-2.0.so.0: undefined symbol: g_datalist_get_data
    xfdesktop[914] starting up
    xfdesktop: symbol lookup error: /usr/lib/libgtk-x11-2.0.so.0: undefined symbol: g_datalist_get_data
    xfdesktop[917] starting up
    xfdesktop: symbol lookup error: /usr/lib/libgtk-x11-2.0.so.0: undefined symbol: g_datalist_get_data
    xfdesktop[919] starting up
    Then it finally gives up and xfce shuts down.
    I've googled and browsed the forums until my eyes hurt and I can't find a solution for my specific problem.
    Any help is much appreciated. Thank you for reading.
    -Kin
    Last edited by Kin2InuYasha (2011-11-01 04:29:06)

    I don't know if it matters now, but I'd like to post my solution in case anyone else comes across this problem.
    You were pretty much correct Tyo. I did pacman -Syu before and after the installation of xfce, but my problem was after the installation there was a file at /etc/profile.d/locale.sh that was causing a conflict and not allowing the system to update at all. I never noticed it and when it went back to the cursor so fast I automatically assumed everything was up to date and it had nothing to do. I removed the locale.sh file, ran pacman -Syu, and everything updated as it should and xfce works flawlessly now.
    Well, you know what they say about assuming...
    Thanks a lot guys.
    -Kin

  • [solved] Building xfce4-panel-git

    Hello.
    I've satisfied all depps for xfce4-panel-git. However, I have a problem:
    Build Configuration:
    * Debug Support: yes
    * GNU Visibility: yes
    * Documentation: no
    make all-recursive
    make[1]: Entering folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/xfce4-panel-git/src/xfce4-panel-build'
    Making all in libxfce4panel
    make[2]: Entering folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/xfce4-panel-git/src/xfce4-panel-build/libxfce4panel'
    make all-am
    make[3]: Entering folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/xfce4-panel-git/src/xfce4-panel-build/libxfce4panel'
    make[3]: *** No rules for making object `libxfce4panel-aliasdef.c', required by `libxfce4panel_1_0_la-libxfce4panel-aliasdef.lo'. Stop.
    make[3]: Leaving folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/xfce4-panel-git/src/xfce4-panel-build/libxfce4panel'
    make[2]: *** [all] Error 2
    make[2]: Leaving folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/xfce4-panel-git/src/xfce4-panel-build/libxfce4panel'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/xfce4-panel-git/src/xfce4-panel-build'
    make: *** [all] Error 2
    NOTE:English messages were translated from polish language.
    What am I doing wrong?
    EDIT: It's easier to install from repo:
    [xfce4-git]
    Server = http://mail.kazgrid.kz/repo/i686/xfce4-git-latest
    ^^
    Last edited by weakhead (2010-05-25 20:47:31)

    s3vv4 wrote:
    When I open asian sites (like http://www.youku.com/ ), for some reason my xfce4-panel crashes. Probably any site that has asian symbols would crash the panel.
    I started xfce4-panel in a terminal, and it prints the following when it crashes:
    xfce4-panel: cairo-scaled-font.c:459: _cairo_scaled_glyph_page_destroy: Assertion `!scaled_font->cache_frozen' failed.
    fish: Job 1, “xfce4-panel &” terminated by signal SIGABRT (Abort)
    Is this some problem with my fonts? Because I get alot of squares instead of asian symbols.
    This was happening to me too, but I think it was because of Russian characters.. I've now installed all of the ttf fonts and I hope xfce4-panel stops crashing

  • Pekwm + xfce4 panel [SOLVED]

    Hi all
    After reading in the forum about pekwm I decided to give it a shoot.
    I just love the "tabed" window funktion
    Now to the problem
    The trouble i have is that when I'm using mplayer or gmplayer in fullscreen mode the panel and iconbox is in the foreground.
    Conky and all other windows stays in the background
    Is there a way to alter this behaivior.
    My .xinitrc
    xfce4-iconbox &
    xfdesktop &
    xfce4-panel &
    conky &
    exec pekwm
    Many thanks
    Clanman

    Dusty wrote:
    I don't know the specifics, but I suspect you can use autoproperties for each window that sets them to a lower layer somehow
    Dusty
    Hi Dusty
    After your tip I dug into Pekwm and found the autoproperties
    ~/.pekwm/autoproperties
    I added this
    Property = "^xfce4-panel,^Xfce4-panel" {
    ApplyOn = "Start"
    Layer = "Harbour"
    Property = "^MPlayer,^MPlayer" {
    ApplyOn = "Start New"
    Layer = "Menu"
    Now my mplayer gets the top window placement.
    Tanks for the tip
    //Clanman

  • [SOLVED][XFCE] xfce4-panel crashes when chromium renders certain sites

    When I open asian sites (like http://www.youku.com/ ), for some reason my xfce4-panel crashes. Probably any site that has asian symbols would crash the panel.
    I started xfce4-panel in a terminal, and it prints the following when it crashes:
    xfce4-panel: cairo-scaled-font.c:459: _cairo_scaled_glyph_page_destroy: Assertion `!scaled_font->cache_frozen' failed.
    fish: Job 1, “xfce4-panel &” terminated by signal SIGABRT (Abort)
    Is this some problem with my fonts? Because I get alot of squares instead of asian symbols.
    Last edited by s3vv4 (2013-08-30 16:39:25)

    s3vv4 wrote:
    When I open asian sites (like http://www.youku.com/ ), for some reason my xfce4-panel crashes. Probably any site that has asian symbols would crash the panel.
    I started xfce4-panel in a terminal, and it prints the following when it crashes:
    xfce4-panel: cairo-scaled-font.c:459: _cairo_scaled_glyph_page_destroy: Assertion `!scaled_font->cache_frozen' failed.
    fish: Job 1, “xfce4-panel &” terminated by signal SIGABRT (Abort)
    Is this some problem with my fonts? Because I get alot of squares instead of asian symbols.
    This was happening to me too, but I think it was because of Russian characters.. I've now installed all of the ttf fonts and I hope xfce4-panel stops crashing

  • Flashplugin killing XFCE4 Panel

    I'm currently using XFCE4 as a desktop enviroment, yesterday each time I would visit a website using Firefox that requires Adobe Flash my XFCE panels would disappear. So far the only fix I have found for this was closing my browser and running the command: "xfce4-panel". I haven't seen anyone else experiencing this issue.
    EDIT:
    This is the error shown when XFCE4 Panel Crashes
    xfce4-panel: cairo-scaled-font.c:459: _cairo_scaled_glyph_page_destroy: Assertion `!scaled_font->cache_frozen' failed.
    Aborted (core dumped)
    Last edited by Laughs (2014-05-22 00:44:22)

    Please refer to this post: https://bbs.archlinux.org/viewtopic.php?id=169433. I had the same problem, solved (or it seems) by just changing gtk font theme.
    EDIT: Nope, this didn´t solve my problem. I´m still looking for an answer..
    Last edited by odie (2014-06-14 10:47:00)

  • Opening a Remote Panel of the Top Level vi for an executable

    Hello Everyone
    I was wondering how you would open up a remote panel for the top-level vi in an executable?
    I have created a LabVIEW application and have tested opening the remote panel when it is running in the full labview development suite - this all works fine. I simply go operate>connect to remote panel and enter the server address, the port (8000) and the vi name using the path "My Project.lvproh/My Computer/main.vi" format.
    However, if I then build this application into an executable I do not seem to be able to open a remote panel - it might be that I am just entering the VI name incorrectly.
    with VI name = "main.vi"  or with VI name = "C:\builds\main.exe\main.vi" and the exe. running I get the error:
    Connecting to remote panel server...
    Requested VI is not loaded into memory on the server computer
    However I am not sure how else I would enter it.
    The main.ini has the following configuration:
    server.app.propertiesEnabled=True
    server.ole.enabled=True
    server.tcp.acl="0800000008000000"
    server.tcp.enabled=True
    server.tcp.paranoid=True
    server.tcp.port=6363
    server.tcp.serviceName=""
    server.vi.access=""
    server.vi.callsEnabled=True
    server.vi.propertiesEnabled=True
    WebServer.Enabled=True
    WebServer.TcpAccess="c+*"
    WebServer.ViAccess="+*"
    DebugServerEnabled=True
    DebugServerWaitOnLaunch=False
    Both machines have LabVIEW 2011 Profesional Development System SP1 on so I do not think it is a limited remote access licence issue.
    Any suggestions as to where I am going wrong would be much appreciated.
    Cheers
    John
    Solved!
    Go to Solution.

    It appears that you can infact use remote panels within an executable.
    The problem I had was that I had left the web server port for the remote panels the same as the LabVIEW development environment. That meant that the main LabVIEW web server was getting in the way of the web server that was associated with my built application.
    With the application's web server on a different port and the VI in memory (and the file in a library/directory external to the exe if it is not the top level VI), you just need to specify the VI name such as main.vi .
    Solved!

  • Compiz as stand-alone + xfce4-panel : a few questions

    After some months with gnome 3 I decided to go back to compiz, as I used to use that with gnome 2.xx and appreciated it quite a bit. I ran into a few problems when trying to set it up properly.
    First, is there some way to enable session management with compiz? I would like to be able to have a button or menu that offers to sleep, reboot or shutdown the computer. Not that I mind using 'pm-suspend' and other commands like that, but my girlfriend also uses the computer sometimes so it needs to be more user-friendly than that. I noticed there is an actions button by default in the xfce panel but it doesn't work in compiz and just says 'session management is disabled, do you want to exit X' or something like that.
    Second, I need some sort of run prompt when I hit alt-f2. The 'gnome compatibility' option in ccsm doesn't seem to work in standalone mode.
    Third, I want the computer to automatically sleep when I flip the lid. In gnome 3, it does that without any special configuration, but this doesn't work with compiz as a stand-alone. I suspect I need to configure it to pick up the 'lid is flipped' event somehow?
    Fourth, I need a volume control option that will display a volume icon in my xfce4 panel notification area and most importantly I need that volume control icon to respond accurately to the input from my 'mute' and volume 'up' and 'down' buttons. It's a thinkpad x220 laptop. I bring it to school often, so being able to know whether my volume is on or off is important when in class. This works fine in gnome3 but I have tried other DE's such as LXDE and found that the volume icon stayed the same as I used the volume buttons on the keyboard (the buttons did work, so it could be muted but still displaying that it's at full volume). To check if it was muted or not, I had to open a terminal and use alsamixer.
    Of course, I don't NEED to be using xfce4-panel. What I need is a menu, and automatic menu generation is nice because it's easier to configure. So I picked that one because I've used it in the past. If there is a better alternative, please recommend it. Or perhaps it would be best if I simply ran gnome fallback and compiz as the WM?

    I'm using compiz standalone, so here's how i solved that stuff.
    You can use obshutdown for session management, it's in AUR, look in its config file, slap a launcher in the corner of you panel, set the icon for prettyness and it works pretty well.
    I use gmrun as a launcher, set alt+f2 to call it. It's pretty simple which is what i like. You can also use synapse, or gnome-do, they have more functionality like searching your bookmarks, your files, your loved one's medical history, you name it.
    For volume control, you can use pnmixer from aur, it sits in your system tray, and you can set it's hotkeys, but you can also use CCSM to set your hotkeys for volume management.
    I think laptop-tools(check the wiki) can be used to put your computer to sleep, and general powersaving. You should check the article named laptop in the wiki for other laptop-related stuff too. I think i used xfce4-power-manager for power management as well a while ago.
    I used xfce4-panel for a while but i didn't really like it as much as i liked the old gnome-panel, so i installed mate-panel(which is the old gnome-panel). You can find it in AUR, or you can check it's wiki article for repos you can add for mate(if you want to install it from aur, it will pull some aur dependancies, and i didn't feel like compiling everything).

Maybe you are looking for

  • Migrate word documents from external system to SharePoint 2007 site

    Hi All, I have a requirement wherein I have to migrate around 2500 word documents from one of the system to SharePoint system. Please note that my client is using MOSS version of SharePoint. Also some excel files are embedded in to some of the word d

  • R/3 Roles for Portal 7.0 Urgent

    Hi All, What are the roles of R/3 to be assigned for a user to login Enterprise Portal 7.0 after installation. Please reply urgent. Regards, Bharat Mistry.

  • Application Background Image ?

    Hi Folks, Instead of a dull background color, how do I show an image during 1-2 seconds, while my application is loading? Thanks for your help, VC

  • Aperture shut down during import

    I started the import of photos from iPhoto to Aperture. Aperture shut down in the process. How do I upload only the photos that did not transfer? I tried import again, but it appears to want to upload the entire library again..

  • Trouble with youtube

    On my MacBook Pro, youtube videos just don't work - will start but then buffer - over and over.  I have the lastest version of software. Is there a fix?