[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.

Similar Messages

  • [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 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 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] 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)

  • Xfce4-panel transparent with opaque text/icons

    I'm trying to achieve panel transparency with opaque text/icons, I googled around and eventually found a few helpful posts. I'm trying to use the patch guide posted in this topic a few years back:
    https://bbs.archlinux.org/viewtopic.php?id=71248
    when I try to makepkg, "xfce4-panel-4.6.1.tar.bz2" doesn't pass a validity check for the md5sums. Is this patch even up to date? If it isnt where can I find a more up to date one because so far I've been unsuccessful in that regard.
    Also, I assume that patching is still the only option for achieving this transparency effect in xfce4 or has something new been developed?

    Sorry about my last post. I just thought that if you couldn't get it to work with opaque icons, then you wanted the next best thing. Anyway, maybe it is because the patch is for xfce 4.6.1 .
    methuselah wrote:
    wankel wrote:
    heres the cairo patch for the new panel:
    http://www.cooptel.qc.ca/~pggervais/xfc … tch.tar.gz
    can anyone give me a step by step on how to apply this patch to my panel?
    This is how I patched mine:
    place the new 4.6.1 patch, this PKGBUILD, and the xfce4-panel.install files in a folder called ~/xfce4-panel-build:
    PKGBUILD file:
    # $Id: PKGBUILD 36266 2009-04-20 20:58:18Z andyrtr $
    # Maintainer: tobias <tobias funnychar archlinux.org>
    pkgname=xfce4-panel
    pkgver=4.6.1
    pkgrel=1
    pkgdesc="Panel for the Xfce desktop environment"
    arch=('i686' 'x86_64')
    license=('GPL2')
    url="http://www.xfce.org/"
    groups=('xfce4')
    depends=("libxfcegui4>=$pkgver" 'exo>=0.3.101' 'libwnck' 'hicolor-icon-theme')
    makedepends=('pkgconfig' "xfconf>=$pkgver" 'intltool')
    options=('!libtool')
    install=${pkgname}.install
    source=(http://www.xfce.org/archive/xfce-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2
    xfce4-panel-4.6.1.tar.bz2)
    md5sums=('73a366b9892152266b465d7d9c35bef4'
    '7078dba125570fd952de63a78c477d1c')
    build() {
    cd ${srcdir}/${pkgname}-${pkgver}
    patch -Np0 -i /home/"your-name"/xfce4-panel-build/xfce4-panel-4.6.1_cairo.patch
    ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
    --localstatedir=/var --disable-static
    make || return 1
    make DESTDIR=${pkgdir} install || return 1
    xfce4-panel.install file:
    post_install() {
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    post_upgrade() {
    post_install $1
    post_remove() {
    gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
    then in the xfce4-panel-build folder run this in a terminal:
    makepkg -c
    I think this should work for you. Then all you have to do is install it using pacman -U, and then restart the panel using these 2 commands in alt+f2 run program:
    killall xfce4-panel
    then:
    xfce4-panel &
    Try changing everything that says xfce 4.6.1 to 4.6.2 because xfce4-session is 4.6.2 . Or maybe change it to 4.6.4 which is the version of the panel. I don't know what to do about the md5sum error. Delete the line maybe? If you are sure it downloaded correctly. Hope that helps.
    Last edited by Tux the penguin (2010-11-21 20:14:47)

  • [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 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] Gnome 2.30 with Compiz - xcursor theme problem

    Hello all.
    After the recent upgrade to gnome 2.30 I've notice that the cursor under compiz/emerald stays in the "default" theme, no matter what you set on configs...
    All my computers, after the upgrade, show the "default" theme cursor, except when passing the cursor over GTK apps like firefox or openoffice (when it shows the selected cursor theme) or over window close/max/min buttons.
    If you switch from compiz to metacity, the theming works normally.
    I've tested this with all themes I have installed, in many computers.
    Any ideas how to solve this?
    Thanks in advance for any help.
    Last edited by Raws (2010-04-15 16:30:05)

    Same Problem here, but creating /usr/share/icons/default/index.theme does not work.
    I have the DMZ-White theme in /usr/share/icons
    [michael@acer01 ~]$ ll /usr/share/icons/DMZ-White/
    insgesamt 204K
    -rw-r--r-- 1 root root 32 1. Dez 22:40 cursor.theme
    -rw-r--r-- 1 root root 186K 1. Dez 22:40 dmz.svg
    -rw-r--r-- 1 root root 1,3K 1. Dez 22:40 index.theme
    drwxr-xr-x 5 root root 4,0K 1. Dez 22:40 pngs
    I created two links /usr/share/icons/default/index.theme and ~/.icons/default/index.theme
    both point to /usr/share/icons/DMZ-White/cursor.theme
    [michael@acer01 ~]$ ll /usr/share/icons/default/index.theme
    lrwxrwxrwx 1 root root 39 1. Dez 22:49 /usr/share/icons/default/index.theme -> /usr/share/icons/DMZ-White/cursor.theme
    [michael@acer01 ~]$ ll ~/.icons/default/index.theme
    lrwxrwxrwx 1 michael michael 39 1. Dez 22:43 /home/michael/.icons/default/index.theme -> /usr/share/icons/DMZ-White/cursor.theme
    which has this content
    [michael@acer01 ~]$ cat /usr/share/icons/DMZ-White/cursor.theme
    [Icon Theme]
    Inherits=DMZ-White
    If I choose default pointer in Appearance Preferances, still the X-default-Theme is used.
    And in the DMZ-White Theme does not appear in  "Appearance Preferances --> Theme --> costumize --> Pointer" at all.
    I tried also other themes (which appear in the Pointer Tab) but it does not work. Still the X-default-Theme
    Are there maybe any other things I've missed.
    Why does the DMZ-White Theme not appear in the Pointer Tab in Appearance Prefs?
    I'm using Gnome since a few days ...

  • [solved] gnome-panel restarts with alt+f2???

    Hello, few days ago I made an upgrade (pacman -Syyu) and I noticed today that when I make alt+f2 my gnome-panel restarts and no Run windows opens... well the first time I press alt+f2 it opens but only for a microsecond and it closes and gnome-panel restarts...
    Any ideas how can fix this?
    Last edited by n0kS (2010-05-06 15:37:29)

    update to gtk2 2.20.1-2

  • Xfce4-power-manager & change icon in Xfce4 panel

    Hello!
    I'm trying to change the appearance for the latest xfce4-power-manager (v1.4.1-2). I use elementary Xfce icons. The former xfce4-power-manager was using the correct (simple black & white) elementary icon in the notification area in the Xfce4 panel. With the latest version, where xfce4-power-manager has to be added manually to the panel, it is using some kind of colourful icon.
    Is there some way to tell the program to use the elementary icons instead? I've already tried to edit /usr/share/applications/xfce4-power-manager-settings.desktop. But no dice.
    Thanks in advance.

    Do you know the location of both, the simple black & white icon and the colourful one?
    If you do, you can try the following. Backup the original colourful one and paste a copy of the one you want to use in the same location and with the same name.
    Afterwards check if the result is the one you want.
    I have myself come across the situation of wanting to change an icon through the .desktop file but in the end it seems that some icons, even in this case maybe?, are hardcoded and can't be changed through a .desktop file.
    More than willing for someone to proof me wrong though!

  • [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)

  • 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).

  • [SOLVED] xfce-panel causing problems with mouse/touchpad

    Since upgrading the packages below  I mouseclicks occasionally do not work.  Also scrolling using the scrollwheel and touchpad doesn't start sometimes. I determined it is not a problem with the mouse or touchpad because 'xev' shows the correct events firing. Also  I see the icon change from arrow to hand when clicking.
    <edit>
    It appears that "xfce4-panel" is the cause. I use tint2 instead of  xfce-panel, but the process running an empty panel is started by default and  somehow interfered with mouse and touchpad events. solved it by removing it from the session, and comment it out in /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml
    </edit>
    [2011-01-19 21:39] synchronizing package lists
    [2011-01-19 21:39] starting full system upgrade
    [2011-01-19 21:57] upgraded libxfce4util (4.8.1-1 -> 4.8.1-1)
    [2011-01-19 21:57] upgraded exo (0.6.0-2 -> 0.6.0-2)
    [2011-01-19 21:57] Generating locales...
    [2011-01-19 21:57] en_US.UTF-8... done
    [2011-01-19 21:57] en_US.ISO-8859-1... done
    [2011-01-19 21:57] nl_NL.UTF-8... done
    [2011-01-19 21:57] nl_NL.ISO-8859-1... done
    [2011-01-19 21:57] Generation complete.
    [2011-01-19 21:57] upgraded glibc (2.12.2-2 -> 2.12.2-2)
    [2011-01-19 21:57] upgraded x264 (20110115-1 -> 20110115-1)
    [2011-01-19 21:57] upgraded ffmpeg (26387-1 -> 26387-1)
    [2011-01-19 21:57] upgraded gdisk (0.6.14-1 -> 0.6.14-1)
    [2011-01-19 21:57] upgraded gstreamer0.10-ugly (0.10.16-2 -> 0.10.16-2)
    [2011-01-19 21:57] upgraded gstreamer0.10-ugly-plugins (0.10.16-2 -> 0.10.16-2)
    [2011-01-19 21:57] upgraded gtk-xfce-engine (2.8.0-1 -> 2.8.0-1)
    [2011-01-19 21:57] upgraded lib32-gcc-libs (4.5.2-4.2 -> 4.5.2-4.2)
    [2011-01-19 21:57] upgraded libjpeg (8.3.0-1 -> 8.3.0-1)
    [2011-01-19 21:57] upgraded xfconf (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:57] upgraded libxfcegui4 (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:57] upgraded mplayer (32792-1 -> 32792-1)
    [2011-01-19 21:58] when you use a non-reparenting window manager
    [2011-01-19 21:58] set _JAVA_AWT_WM_NONREPARENTING=1 in
    [2011-01-19 21:58] /etc/profile.d/openjdk6.sh
    [2011-01-19 21:58] upgraded openjdk6 (6.b20_1.9.4-1 -> 6.b20_1.9.4-1)
    [2011-01-19 21:58] [2011-01-19 21:58] upgraded openssh (5.6p1-2 -> 5.6p1-2)
    [2011-01-19 21:58] upgraded pcre (8.12-1 -> 8.12-1)
    [2011-01-19 21:58] upgraded terminal (0.4.5-2 -> 0.4.5-2)
    [2011-01-19 21:58] [2011-01-19 21:58] upgraded thunar (1.2.0-1 -> 1.2.0-1)
    [2011-01-19 21:58] upgraded thunar-volman (0.6.0-1 -> 0.6.0-1)
    [2011-01-19 21:58] upgraded udisks (1.0.2-2 -> 1.0.2-2)
    [2011-01-19 21:58] upgraded vim-runtime (7.3.102-1 -> 7.3.102-1)
    [2011-01-19 21:58] upgraded vim (7.3.102-1 -> 7.3.102-1)
    [2011-01-19 21:58] upgraded vlc (1.1.5-3 -> 1.1.5-3)
    [2011-01-19 21:58] [2011-01-19 21:58] upgraded xfburn (0.4.3-3 -> 0.4.3-3)
    [2011-01-19 21:58] upgraded xfce-utils (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] [2011-01-19 21:58] upgraded xfce4-appfinder (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] upgraded xfce4-dev-tools (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] upgraded xfce4-panel (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] upgraded xfce4-mixer (4.6.1-2 -> 4.6.1-2)
    [2011-01-19 21:58] upgraded xfce4-notifyd (0.2.0-1 -> 0.2.0-1)
    [2011-01-19 21:58] upgraded xfce4-session (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] upgraded xfce4-settings (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] upgraded xfdesktop (4.8.0-1 -> 4.8.0-1)
    [2011-01-19 21:58] upgraded xfwm4 (4.8.0-1 -> 4.8.0-1)
    Last edited by rwd (2011-01-23 14:01:25)

    welcome to macbook forum.
    try this link:
    http://docs.info.apple.com/article.html?artnum=17228
    and open your system preference / keyboard and mouse / trackpad tab / and changed the preference (double clicking speed, etc) as you like and try it.
    Good Luck.

  • [Solved] Multiple wallpapers on MATE with Compiz

    Hi.
    I wanted to make MATE work with Compiz so it would let me have multiple wallpapers with the Wallpapers feature in ccsm. When I set the settings in ccdm, it doesn't work.
    I googled it, and although it showed me a few settings I should change in the configuration editor, it did nothing.
    What should I do so I can make it work?
    EDIT: solved. Basically, I removed nautilus (I don't want to use it anymore) -- it was also conflicting with caja, and set the show_desktop in apps/caja/preferences to false.
    Note: setting the show_desktop to false will mean removing icons from desktop. I don't know how to put them back up, but I will look it up later.
    Last edited by Technicolor (2012-09-13 13:42:55)

    fabertawe wrote:
    Technicolor wrote:
    EDIT: solved. Basically, I removed nautilus (I don't want to use it anymore) -- it was also conflicting with caja, and set the show_desktop in apps/caja/preferences to false.
    Note: setting the show_desktop to false will mean removing icons from desktop. I don't know how to put them back up, but I will look it up later.
    Ah, of course, Nautilus was managing the desktop. You can turn that off from Nautilus in its preferences so you can still use it as the file manager (if I remember right). Well that's how it worked with Gnome 2 anyway. BTW, isn't Caja their name for Nautilus, so the same thing?
    As for icons, I don't use or want those on my desktop so I've never looked into a replacement functionality but this might be something you have to give up to have Compiz manage the wallpapers.
    p.s. If you're looking for an amazing file manager then check out SpaceFM.
    It's just a file manager, right?
    I'm looking at it right now, it looks amazing.

Maybe you are looking for

  • How do I  transfer adobe reader from a desk top computer to a laptop

    how do i transfer adobe reader from my desk top to a new lap top?

  • Networking with PC

    I am trying to share files and printers with Windows XP from my iBook G4. I have both firewalls off, windows sharing on, and neither computer can find the other. I am using a D-Link router to connect the iBook wirelessly, but I have also cabled strai

  • Connecting Thinkpad T440s to a 21:9 (29" ultrawide) monitor

    I have recently purchased a 29" ultrawide LG monitor, with a 21:9 aspect ratio. When I plug it in, it recommends a 2560x1080 screen resolution. I was disappointed as the display settings on my thinkpad only go up to a 1960x1080 resolution.  Is there

  • Stereo vs. Ch 1 + Ch 2

    Hi, I've been having major issues with the differences between "Stereo" and "Ch 1 + Ch 2" in FCP HD. I basically filmed with a shotgun on Ch 1 and the on-camera mic with Ch 2, so the audio levels and clarity on Ch 1 are much better and that is what I

  • Cropping in preview makes green artifacts

    Occasionally, when I crop a photo in Preview (in Snow Leopard -- didn't notice this in Tiger), the program messes up and makes like part of the photo green or have green lines over it. I can't reproduce right now to get a screenshot, but I've already