Gnome 2.24 nautilus menu problem

I have a problem since upgrade to gnome 2.24.  If I type Alt F2 and then "nautilus", it comes up fine.
If I go to "Places" on the launcher then select "Home Folder" or "Documents" it brings up SMPlayer.
I don't know if I managed to botch some setting somewhere or not.
Can anybody help me get the "Places" folders working again?

Glad that worked
Did you note my post here? http://bbs.archlinux.org/viewtopic.php? … 43#p438743
Can you mark this thread as SOLVED too by editing your original post?

Similar Messages

  • [Gnome 3.2]Nautilus reacts slowly, information about opening directory

    I use the fallback mode in GNOME 3 and Nautilus.
    After upgrade to Gnome 3.2
    When you select Menu - Location - Home (or any other directory), Nautilus opens this directory. I can move between directories without problems.
    However, the information about the opening directory – in the picture, "Otwieranie ..."(which means "Opening ...") – disappears after about 10 seconds, and the mouse cursor changes to the shape a clock.
    It's pretty annoying. How do I fix this?
    http://i.stack.imgur.com/dCWtu.png
    Edit: Sorry if you want move this Topic to "Applications & Desktop Environments"
    mod edit: Hello KubAT, please read Forum Etiquette: Pasting Pictures and Code. Thanks. --fsckd
    Last edited by fsckd (2011-10-04 14:59:07)

    I'm having the exact same issues since the upgrade. My theme is broken too and unless I remove the user menu from the top panel, it stays huge regardless of any changes to the size in the panel properties. My clock also doesn't look/act like it should using the default theme (Adwaita).
    My cursor does not change though, probably because I have a /usr/share/icons/default/index.theme file to set the default cursor (this also applies to the DM).
    I guess all you can do for now is wait until the themes get fixed to work with GTK 3.2 or just move to another DE, it seems Gnome isn't dedicating much effort to the classic desktop.

  • Gnome-shell-extension-places-menu

    Hello,
    I have some questions about the places menu.
    1. Is it possible to have it show an item that I have in my bookmarks which is to a samba share?
    smb://192.168.1.202/temp/ (named Temp)
    While that location is mounted, the item shows as a removable device. However, I would like to be able to mount the location from the places menu.
    2. Is it possible to show removable devices (such as usb flash drives) before they are mounted? (I don't automount my drives)
    3. Is it possible to see a newly added bookmark without restarting the shell? (or see removed bookmark go away)
    I guess I am asking if it is possible to have the places menu in the shell show the items that are in the "places" of nautilus.
    I have also played with the gnome-shell-extension-drives-menu. The description of the package describes that it can be used to mount and unmount removable media. How do I unmount without opening Nautilus?

    Thanks
    FYI gnome-shell needs to be restarted for changes to appear.
    Alt+F2 type 'r' and enter to restart it.

  • Menu problem with IE

    menu problems with IE connected with spry - see site:
    1.
    http://www.whatwomenwant-tv.com/index.html
    (horizontal menu bar - will not display fully, probably to do with
    flash)
    2.
    http://www.whatwomenwant-tv.com/about.html
    (horizontal menu bar swerves to the left)
    3.
    http://www.whatwomenwant-tv.com/streetinterviewswomen.html
    (vertical menu bars in questions are all over the page)
    thanks 4 help.

    I tried in Firefox 3 and IE7 and they both seemed fairly slow
    for any action to take place. But IE7 did seem pretty slugish.
    It seems that you're already determined what the issue is,
    you have waaaaaay too many menu items. Seems to me that that number
    of items don't belong in a menu. There are even menus that are too
    long to appear entirely on the page, so they can't be easily
    accessed without accidentally hiding the menus again, which I did
    several times. IN particular:
    Cartuchos > Technologica
    If you cannot change to a different format to show all of the
    items, then perhaps you can split up the menu so that you don't
    have too many at one time. I checked the code of your page and it
    seems that you've got a lot of other scripting going on there
    besides Spry, so is the issue with Spry or with everything else
    you're trying to do with that menu. If you can try to recreate the
    page with only the menu items on it (and not pulled in dynamically
    on the fly), and then add back to your page a bit a time, you might
    be able to find out what is really causing the delays.

  • Context menu problem in ADF 11g

    Hi All,
    A context menu problem puzzle me. Following is the source,
    =======================================
    <af:tree id="tree" value="#{treeTest.collectionModel}" var="node"
    contentDelivery="immediate"
    disclosedRowKeys="#{treeTest.treeDisclosedRowKeys}"
    rowDisclosureListener="#{treeTest.rowDisclosureListener}"
    rowSelection="single">
    <f:facet name="nodeStamp">
    <af:group id="g1">
    <af:image source="/image/#{node.treeLevel}.jpg" id="i1"
    inlineStyle="width:16px; height:16px; vertical-align:middle;"/>
    <af:outputText id="ddl" value="#{node.name}">
    <af:showPopupBehavior popupId="myPopup" triggerType="contextMenu"/>
    </af:outputText>
    </af:group>
    </f:facet>
    <f:facet name="contextMenu">
    <af:popup id="myPopup" popupFetchListener="#{treeTest.popupListener}"
    contentDelivery="lazyUncached">
    <af:switcher id="s1" facetName="#{treeTest.level}">
    <f:facet name="1">
    <af:menu text="menu 1" id="m1">
    <af:forEach items="#{treeTest.menuItems['0']}" var="menuItemss">
    <af:commandMenuItem text="#{menuItemss.name}"
    actionListener="#{bindings.onNodeClicked.execute}"
    disabled="#{!bindings.onNodeClicked.enabled}">
    </af:commandMenuItem>
    </af:forEach>
    </af:menu>
    </f:facet>
    <f:facet name="2">
    <af:menu text="menu 2" id="menu1">
    <af:forEach items="#{treeTest.menuItems['1']}" var="menuItemss">
    <af:commandMenuItem text="#{menuItemss.name}"
    actionListener="#{bindings.onNodeClicked.execute}"
    disabled="#{!bindings.onNodeClicked.enabled}">
    </af:commandMenuItem>
    </af:forEach>
    </af:menu>
    </f:facet>
    </af:switcher>
    </af:popup>
    </f:facet>
    </af:tree>
    ========================================================
    I want to get the commandMenuItem tag's information, i use following code in onNodeClicked method try to get it,
    FacesContext facesContext =FacesContext.getCurrentInstance();
    ELContext elContext = facesContext.getELContext();
    ExpressionFactory expressionFactory =facesContext.getApplication().getExpressionFactory();
    ValueExpression exp =expressionFactory.createValueExpression(elContext,"#{menuItemss.name}", Object.class);
    but the exp is null.
    Please help me to solve this problem.
    Thank you very much.
    Edited by: Yitao Li on Dec 4, 2009 1:06 PM

    You might need a #
    ValueExpression exp =expressionFactory.createValueExpression(elContext,"#{menuItemss.name}", Object.class);

  • Sudden menu problem in CS4:  Running OS10 Mavericks. Anyone got a clue?

    Cannot keep history and layers windows open simultaneously. Others likewise. By sudden I mean, one day it's fine, the next there's a menu problem. Assistance appreciated.

    If you have placed your layout the way you want it, use the Save Workspace, give it a name, and only check Palette location in the Save dialog.
    Then switch to another Workspace and back to your saved workspace to see if that fixes the problem.
    Last resort is to reset Prefs. Hold down ctrl-alt-shift, start Photoshop and agree to the reset.
    Gene

  • Spry menu problem - CS6 Dreamweaver

    I wonder if anyone can help me with my spry menu problem which I have with a fixed 960px wide horizonal menu bar that has 8 items in it. The sub-menus don't seem to display properly when you click on them in that some of the submenus only show up at the end of the menu bar itself in Explorer browsers 8/9. Does anyone know of any code I can apply to fix this problem? I am new to spry menu features and so any help would be very much appreciated.

    Also validate the rest of the code in your pages to see if you have any critical errors that need fixing.  For example, a missing doc type declaration might explain Spry failures.
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    As an FYI, Adobe abandonded the Spry Framework late last year, after CS6 was released because Spry drop-menus don't hold up well on touch screen devices.   If you can't get satisfaction with Spry, try jQuery Superfish.  It's a better menu system.
    http://users.tpg.com.au/j_birch/plugins/superfish/
    Nancy O.

  • [X86_64 Testing] Bluetooth in Gnome 3.10 status menu

    I have a Dell E6500 laptop with bluetooth and would like to have bluetooth visible in the gnome 3.10 status menu as shown on the picture below.
    Bluetooth is working just fine when i go to the settings menu but it is not shown in the status menu at all.
    - Tried starting the bluetooth service at boottime with systemd.
    - Tried pairing with a device first via the settings menu.
    Still all i get is this.
    Did anyone here get this working and/or does anyone have any suggestions as to why this might not be working ?

    I really dont want to be a gravedigger, but it works if you do the bluetoothctl thingy (you know "power on" "agent on").
    The only bluez app that does this automatically so far is bluedevil for kde.

  • Spry Horizontal Menu Problem

    I switched to version 2 of the Spry Menubar due to sub-menu problems associated with iPads. Now I am having problems with sub-menus within IE8.  It is not possible to *quickly* scroll down the menu without the sub-menu disappearing.  Here is an example:
    http://gerberanalytics.com/tennis/tennis_header_test.php
    It works ok with CS6 in the design view, but not on the local test server or on the production server.  Any ideas?
    Thanks in advance for your help.

    Gramps,
    I appreciate you providing this.  I took a closer look at the errors and I made a few changes but this validator service continued to kick out errors.  In fact if you put Adobe's own web site into this application (http://www.adobe.com), it comes up with 44 errors.  As I mentioned before, the Adobe Widget Browser application for Spry Menubar 2 is essentially creating my code so I doubted that this was an actual problem.
    While I have been interacting with you, I have also been awaiting an update from Adobe's senior technology staff for a solution.  I heard from them today.  Here is what Adobe said:  Spry Menubar 2 has problems with IE 8 and IE 9 (which I already knew).  The first person with whom I spoke at Adobe suggested that my customers running the IE 8 and IE 9 browsers should switch to a different browser, such as Chrome.  I explained that asking users to switch was not a solution -- that's about 35% of my users.  I then asked to speak with a manager / supervisor. 
    My conversation with the supervisor went a bit better.  He told me that those running IE 8 and IE 9 on a Windows XP machine are ok.  Vista is a problem.  Windows 7 is also iffy.  My machine is a Vista and my wife's machine is a Windows 7.  It does not work on either machine for us.
    I told him that Spry Menubar 2 should be withdrawn from their site or there should be a warning to insure that people are aware of the problems.  He didn't say that they would do that.  He suggested that I should check back with him in a couple of weeks.  I did not get a warm and fuzzy feeling that this was a priority item for them.
    At this point, I'm bailing on Spry Menubar 2.  I may return to Spry Menubar 1.6 which requires a "double tap" on the nav buttons to work on an iPad.  I may also check out jQuery.
    Thanks for the suggestions but it looks like Adobe has some serious issues.  If your customers are using iPads (and they are), Spry Menubar 2 is not a solution to fix the problems encountered in Spry 1.4 and Spry 1.6.
    Scott

  • [Solved] Gnome shutdown and logout menu font problem

    Hi All,
    When I click shutdown or logout options under System, the popup window apears as normal, but the there is no readable font/ characters. The characters look like what you see when you open a binary in a text editor, just thin little squares where the text should be.  All other menus and text are working fine. 
    Any idea?
    -Shawn
    Last edited by afu (2009-07-26 21:08:02)

    Hmmm...   Not sure what happened but it works now.
    -Shawn

  • Nautilus have problem with opening paths other than /home

    Hi,
    I have strange problem with nautilus. When I want to open some path ie. /media/*some mounted device* or /tmp usign gnome-menu "Places" I see hourglass cursor for a while and then nothing happens. Only home would open with "Places" however typing nautilus path in console opens the specified path instantly. If I open /home and then go to desired place and next try to again open this path with "Places" menu it works.
    How could I fix this issue?
    Last edited by karm (2011-01-27 20:54:26)

    karm wrote:
    Sorry for late reply I was not here for a while.
    here are the permissions:
    /media
    drwxrwx--- 1 root staff 8,0K 02-13 04:35 wd
    Unless your user is part of the "staff" group, you wouldn't be ale to open "wd".
    drwxrwxrwt 14 root root 20K 02-20 03:03 tmp
    Permissions are good here.  You should be able to open everything.  *But* if you want, issue a "chown root:users" on /tmp as root and see if that makes a difference.  (I'm assuming "users" is your default group.  It is for me on Arch.)
    /home
    drwxr-xr-x 49 karm root 20K 02-19 21:07 karm
    You own home so that is as it should be.
    > As I wrote before, only /home is opening corectly. It may be important that /media/wd is a mount point of an external usb hard drive. Does this ring some bells?
    >Regards,
    >karm
    I don't know if you're having a Gnome specific issue or not but I would play around with changing ownership of the problematic folders to your user and see if it makes a difference.

  • After recent updates, Gnome freezes randomly. Video problem?

    I've been having some problems lately that I didn't have before recent updates.
    My desktop will freeze randomly and my only option is to switch to a VT and enter multi-user mode with `systemctl isolate multi-user.service`. X doesn't crash though. My Gnome Desktop just freezes entirely, but the mouse pointer continues to move around just fine. When I enter multi-user mode, Xorg.0.log says that the server exited successfully.
    Below are error messages in dmesg, systemd journal, and Xorg.0.log.
    # dmesg | grep -i error
    [17986.766825] [drm:r100_cs_track_texture_check] *ERROR* Texture of unit 0 needs 245760 bytes but is 139264
    [17986.766827] [drm:r100_cs_track_texture_print] *ERROR* pitch 1280
    [17986.766829] [drm:r100_cs_track_texture_print] *ERROR* use_pitch 1
    [17986.766831] [drm:r100_cs_track_texture_print] *ERROR* width 65
    [17986.766833] [drm:r100_cs_track_texture_print] *ERROR* width_11 2048
    [17986.766834] [drm:r100_cs_track_texture_print] *ERROR* height 48
    [17986.766836] [drm:r100_cs_track_texture_print] *ERROR* height_11 2048
    [17986.766838] [drm:r100_cs_track_texture_print] *ERROR* num levels 0
    [17986.766840] [drm:r100_cs_track_texture_print] *ERROR* depth 0
    [17986.766842] [drm:r100_cs_track_texture_print] *ERROR* bpp 4
    [17986.766844] [drm:r100_cs_track_texture_print] *ERROR* coordinate type 0
    [17986.766845] [drm:r100_cs_track_texture_print] *ERROR* width round to power of 2 0
    [17986.766847] [drm:r100_cs_track_texture_print] *ERROR* height round to power of 2 0
    [17986.766849] [drm:r100_cs_track_texture_print] *ERROR* compress format 0
    [17986.766851] [drm:radeon_cs_ib_chunk] *ERROR* Invalid command stream !
    [22547.870582] plugin-containe[20829]: segfault at 7fcf04225a05 ip 00007fcf1487c9d8 sp 00007fcf0c3a1970 error 4
    # journalctl | grep -i error
    Nov 07 23:22:43 starlancer kernel: [drm:r100_cs_track_texture_print] *ERROR* bpp 4
    Nov 07 23:22:43 starlancer kernel: [drm:r100_cs_track_texture_print] *ERROR* coordinate type 0
    Nov 07 23:22:43 starlancer kernel: [drm:r100_cs_track_texture_print] *ERROR* width round to power of 2 0
    Nov 07 23:22:43 starlancer kernel: [drm:r100_cs_track_texture_print] *ERROR* height round to power of 2 0
    Nov 07 23:22:43 starlancer kernel: [drm:r100_cs_track_texture_print] *ERROR* compress format 0
    Nov 07 23:22:43 starlancer kernel: [drm:radeon_cs_ib_chunk] *ERROR* Invalid command stream !
    Nov 07 23:41:07 starlancer dbus-daemon[275]: dbus[275]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.1" (uid=0 pid=273 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.418" (uid=1002 pid=19143 comm="/usr/bin/gnome-session --session=gnome-compiz ")
    Nov 07 23:41:07 starlancer dbus[275]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.1" (uid=0 pid=273 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.418" (uid=1002 pid=19143 comm="/usr/bin/gnome-session --session=gnome-compiz ")
    Nov 07 23:42:07 starlancer dbus-daemon[275]: dbus[275]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.1" (uid=0 pid=273 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.418" (uid=1002 pid=19143 comm="/usr/bin/gnome-session --session=gnome-compiz ")
    Nov 07 23:42:07 starlancer dbus[275]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.1" (uid=0 pid=273 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.418" (uid=1002 pid=19143 comm="/usr/bin/gnome-session --session=gnome-compiz ")
    Nov 07 23:42:16 starlancer gnome-session[19143]: Gdk-WARNING: gnome-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Nov 07 23:42:20 starlancer dbus-daemon[275]: dbus[275]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.438" (uid=0 pid=19658 comm="/usr/sbin/gdm-binary ") interface="org.freedesktop.DBus.Properties" member="GetAll" error name="(unset)" requested_reply="0" destination=":1.439" (uid=0 pid=19664 comm="/usr/lib/gdm/gdm-simple-slave --display-id /org/gn")
    Nov 07 23:42:20 starlancer dbus[275]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.438" (uid=0 pid=19658 comm="/usr/sbin/gdm-binary ") interface="org.freedesktop.DBus.Properties" member="GetAll" error name="(unset)" requested_reply="0" destination=":1.439" (uid=0 pid=19664 comm="/usr/lib/gdm/gdm-simple-slave --display-id /org/gn")
    Nov 07 23:42:20 starlancer NetworkManager[269]: <error> [1352360540.622789] [nm-system.c:924] add_ip4_route_to_gateway(): (wlan0): failed to add IPv4 route to gateway (-12)
    Nov 08 00:19:41 starlancer dbus-daemon[275]: dbus[275]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.1" (uid=0 pid=273 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.487" (uid=1002 pid=19809 comm="/usr/bin/gnome-session --session=gnome-compiz ")
    Nov 08 00:19:41 starlancer dbus[275]: [system] Rejected send message, 2 matched rules; type="method_return", sender=":1.1" (uid=0 pid=273 comm="/usr/lib/systemd/systemd-logind ") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.487" (uid=1002 pid=19809 comm="/usr/bin/gnome-session --session=gnome-compiz ")
    Nov 08 00:20:33 starlancer gnome-session[19809]: Gdk-WARNING: gnome-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Nov 08 00:20:36 starlancer dbus-daemon[275]: dbus[275]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.507" (uid=0 pid=20280 comm="/usr/sbin/gdm-binary ") interface="org.freedesktop.DBus.Properties" member="GetAll" error name="(unset)" requested_reply="0" destination=":1.508" (uid=0 pid=20286 comm="/usr/lib/gdm/gdm-simple-slave --display-id /org/gn")
    Nov 08 00:20:36 starlancer dbus[275]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.507" (uid=0 pid=20280 comm="/usr/sbin/gdm-binary ") interface="org.freedesktop.DBus.Properties" member="GetAll" error name="(unset)" requested_reply="0" destination=":1.508" (uid=0 pid=20286 comm="/usr/lib/gdm/gdm-simple-slave --display-id /org/gn")
    Nov 08 00:20:37 starlancer NetworkManager[269]: <error> [1352362837.36005] [nm-system.c:924] add_ip4_route_to_gateway(): (wlan0): failed to add IPv4 route to gateway (-12)
    # cat /var/log/Xorg.0.log | grep -i -e "(EE)" -e "(WW)"
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 22555.361] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 22555.361] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 22555.361] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 22555.364] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 22555.366] (WW) Warning, couldn't open module vesa
    [ 22555.366] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 22555.367] (WW) Warning, couldn't open module modesetting
    [ 22555.367] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 22555.367] (WW) Warning, couldn't open module fbdev
    [ 22555.367] (EE) Failed to load module "fbdev" (module does not exist, 0)
    EDIT: My desktop is started by systemd using graphical.target and gdm.service to start the GDM display manager on terminal 1 (TTY1). My Gnome desktop runs in Classic (Fallback) mode with Compiz and compiz-decorator-gtk for effect. I
    Any idea what might be causing these freezes or what info I can further provide?
    EDIT: Processes in X are apparently not crashing, only the video output is. For example, if I'm running applications with sound, I continue hearing sound though the graphics are completely frozen. Is there a way to refresh the graphics or video card somehow?
    Last edited by amadar (2012-12-20 10:59:32)

    bmanuel wrote:
    I think i got my problem, but i don't know how to solve it: after much troubles i found out that whenever i have an SMB connection with a machine that then goes down/disconnect from network without me unmounting the share BEFORE it, then BOOM, everything freeze.
    I noticed this only because i was sharing a directory with my brother and noticed i had the froze as soon as he got disconnected from the network: so i asked him to power on that machine and.. magic! My machine unfroze instantly!
    But now, how to fix that?! Is it due to my /etc/fstab? Does this really matter with nemo/nautilus mounted shares? This, however, depicts the machine in question (the one that, disconnecting from the network, caused my own to freeze)
    //themachine.local/shared /home/username/mountpoint/ cifs noauto,guest,username=myname,password=mypassword,uid=1000,gid=100 0 0
    At last I found out what's my problem, hopefully your situation is similar so that we can work out a solution on this one.
    THANKS! I'm quite sure this is the reason gnome shell freezes for me as well. I was mounting my box.com cloud with this entry in /etc/fstab:
    # box.com account
    https://www.box.com/dav /home/abtz/Box davfs rw,user,noauto 0 0
    If anyone has an idea for how to fix this, I'm all ears. For now, I'll just remove the entry from /etc/fstab.
    I'm running vanilla Gnome, with only the Frippery shutdown menu and battery remaining extensions installed.

  • Nautilus menu bar not show

    hi, i installed a new version of gnome-shell 3.6
    And in nautilus have a new shortcut for delete files/folders the new shortcut is ctrl+delete.
    I see in tutorial how to change to delete key but i have a problem, i can't see menubar in nautilus.

    hadrons123 wrote:There is no menu bar in nautilus 3.6. It is design change since nautilus 3.6.
    There is button on the right hand corner which is more or less like the wrench in Chrome browser,which does some of the menu work.
    Sadly this is only half of the truth. many options wont be found in the wrech icon. some will be shown in global menu instead. and again others will be shown in the 2nd icon from the right.

  • Gnome 3.8 - nautilus crashes gnome-shell

    Hi, I have a problem on two users where by once opening nautilus, the shell crashes and then re-blinks in and recovers some times, and sometimes I get a grey screen saying I need to logout. I did a complete removal of gnome 3.6, and then removed all config files in my home folder:
    .gnome2
    .config/gnome-session
    .config/dconf
    .config/gconf
    .config/nautilus
    .config/gtk[2,3]
    cant remember them all exactly but I'm pretty sure I have stock settings, I could create a new user to confirm. Will do that tomorrow.
    here is journalctl output:
    Apr 22 22:07:22 jason-laptop goa[6741]: goa-daemon version 3.8.1 starting [main.c:113, main()]
    Apr 22 22:07:22 jason-laptop gnome-keyring-daemon[6623]: keyring alias directory: /home/jason/.local/share/keyrings
    Apr 22 22:07:22 jason-laptop polkitd[213]: Registered Authentication Agent for unix-session:9 (system bus name :1.387 [/usr/bin/gnome-shell], object path /org
    Apr 22 22:07:22 jason-laptop gnome-session[6626]: Entering running state
    Apr 22 22:07:22 jason-laptop /etc/gdm/Xsession[6626]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:07:22 GMT+0200 (SAST)
    Apr 22 22:07:22 jason-laptop /etc/gdm/Xsession[6626]: Failed to play sound: File or data not found
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** Message: applet now removed from the notification area
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6807:0422/220723:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6807:0422/220723:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6763:0422/220723:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateSto
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6852:0422/220723:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not calculate _NET_NUMBER_OF_DESKTOPS
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not calculate _NET_NUMBER_OF_DESKTOPS
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not get _NET_WORKAREA
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not determine workarea, guessing at layout
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** Message: applet now embedded in the notification area
    Apr 22 22:07:24 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not calculate _NET_NUMBER_OF_DESKTOPS
    Apr 22 22:07:24 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not calculate _NET_NUMBER_OF_DESKTOPS
    Apr 22 22:07:24 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not get _NET_WORKAREA
    Apr 22 22:07:24 jason-laptop /etc/gdm/Xsession[6626]: ** (nautilus:6772): WARNING **: Can not determine workarea, guessing at layout
    Apr 22 22:07:30 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Apr 22 22:07:30 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of 0. This shouldn'
    Apr 22 22:07:30 jason-laptop /etc/gdm/Xsession[6626]: (gnome-shell:6704): St-ERROR **: st_widget_get_theme_node called on the widget [0x41799f0 StWidget.windo
    Apr 22 22:07:30 jason-laptop kernel: traps: gnome-shell[6704] trap int3 ip:7f47cf743ead sp:7fff6b3c5df0 error:0
    Apr 22 22:07:31 jason-laptop /etc/gdm/Xsession[6626]: ** Message: applet now removed from the notification area
    Apr 22 22:07:31 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:9 (system bus name :1.387, object path /org/freedesktop/PolicyKi
    Apr 22 22:07:31 jason-laptop /etc/gdm/Xsession[6626]: gnome-session[6626]: WARNING: Application 'gnome-shell.desktop' killed by signal 5
    Apr 22 22:07:31 jason-laptop gnome-session[6626]: WARNING: Application 'gnome-shell.desktop' killed by signal 5
    Apr 22 22:07:31 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.protected: (3) GDBus.Error:org.fr
    Apr 22 22:07:31 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: (3) GDBus.Error:org.freedes
    Apr 22 22:07:32 jason-laptop polkitd[213]: Registered Authentication Agent for unix-session:9 (system bus name :1.397 [/usr/bin/gnome-shell], object path /org
    Apr 22 22:07:33 jason-laptop /etc/gdm/Xsession[6626]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:07:33 GMT+0200 (SAST)
    Apr 22 22:07:33 jason-laptop /etc/gdm/Xsession[6626]: ** Message: applet now embedded in the notification area
    Apr 22 22:07:35 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Apr 22 22:07:35 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of 0. This shouldn'
    Apr 22 22:07:37 jason-laptop /etc/gdm/Xsession[6626]: [7005:7029:0422/220737:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:37 jason-laptop /etc/gdm/Xsession[6626]: [7005:7029:0422/220737:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:38 jason-laptop /etc/gdm/Xsession[6626]: [7005:7005:0422/220738:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateSto
    Apr 22 22:07:38 jason-laptop /etc/gdm/Xsession[6626]: [7005:7045:0422/220738:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    Apr 22 22:07:38 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x16000
    Apr 22 22:07:38 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be
    Apr 22 22:07:38 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x16000
    Apr 22 22:07:38 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: meta_window_activate called by a pager with a 0 timestamp; the pager needs to be
    Apr 22 22:07:40 jason-laptop /etc/gdm/Xsession[6626]: [7005:7005:0422/220740:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxVi
    Apr 22 22:08:40 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedes
    Apr 22 22:08:40 jason-laptop dbus[139]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1
    Apr 22 22:08:40 jason-laptop dbus[139]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedeskto
    more:
    Apr 22 22:07:22 jason-laptop gnome-session[6626]: Entering running state
    Apr 22 22:07:22 jason-laptop /etc/gdm/Xsession[6626]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:07:22 GMT+0200 (SAST)
    Apr 22 22:07:22 jason-laptop /etc/gdm/Xsession[6626]: Failed to play sound: File or data not found
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** Message: applet now removed from the notification area
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6807:0422/220723:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6807:0422/220723:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (nm-applet:5586): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X s
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Received signal:15->'Terminated'
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (tracker-miner-fs:5587): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (tracker-miner-fs:5587): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (tracker-miner-fs:5587): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Received signal:15->'Terminated'
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: OK
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: OK
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 0 (Success) on X server :2.
    Apr 22 22:07:14 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:8 (system bus name :1.352, object path /org/freedesktop/PolicyKi
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GIO: g_dbus_connection_unregister_object: assertion `G_IS_DBUS_CONNECTION (connection)' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GIO: (gdbusinterfaceskeleton.c:735):remove_connection_locked: runtime check failed: (g_dbus_connection_unregister_
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GObject: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GObject: g_object_ref: assertion `object->ref_count > 0' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GObject: g_object_unref: assertion `object->ref_count > 0' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GdmDisplay: display lasted 0.001743 seconds
    Apr 22 22:07:15 jason-laptop dbus-daemon[139]: dbus[139]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.3" (uid=0 pid=143 co
    Apr 22 22:07:15 jason-laptop dbus[139]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.3" (uid=0 pid=143 comm="/usr/sbin/gdm
    Apr 22 22:07:15 jason-laptop gdm[143]: Failed to give slave programs access to the display. Trying to proceed.
    Apr 22 22:07:15 jason-laptop systemd-logind[138]: New session c8 of user gdm.
    Apr 22 22:07:15 jason-laptop systemd-logind[138]: Linked /tmp/.X11-unix/X3 to /run/user/120/X11-display.
    Apr 22 22:07:16 jason-laptop /usr/bin/dbus-launch[6565]: gnome-session[6565]: WARNING: Could not parse desktop file /usr/share/gdm/greeter/autostart/orca-auto
    Apr 22 22:07:16 jason-laptop /usr/bin/dbus-launch[6565]: gnome-session[6565]: WARNING: could not read /usr/share/gdm/greeter/autostart/orca-autostart.desktop
    Apr 22 22:07:16 jason-laptop gnome-session[6565]: WARNING: Could not parse desktop file /usr/share/gdm/greeter/autostart/orca-autostart.desktop or it referenc
    Apr 22 22:07:16 jason-laptop gnome-session[6565]: WARNING: could not read /usr/share/gdm/greeter/autostart/orca-autostart.desktop
    Apr 22 22:07:16 jason-laptop gnome-session[6565]: Entering running state
    Apr 22 22:07:16 jason-laptop /usr/bin/dbus-launch[6565]: (gnome-settings-daemon:6586): Gvc-WARNING **: Failed to connect context: OK
    more
    Apr 22 22:07:22 jason-laptop gnome-session[6626]: Entering running state
    Apr 22 22:07:22 jason-laptop /etc/gdm/Xsession[6626]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:07:22 GMT+0200 (SAST)
    Apr 22 22:07:22 jason-laptop /etc/gdm/Xsession[6626]: Failed to play sound: File or data not found
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: ** Message: applet now removed from the notification area
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6807:0422/220723:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:07:23 jason-laptop /etc/gdm/Xsession[6626]: [6763:6807:0422/220723:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Er
    Apr 22 22:06:21 jason-laptop /etc/gdm/Xsession[5439]: JS ERROR: !!! WARNING: file '/usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-ext
    Apr 22 22:06:23 jason-laptop /etc/gdm/Xsession[5439]: JS LOG: Example extension initalized
    Apr 22 22:06:23 jason-laptop /etc/gdm/Xsession[5439]: JS LOG: Example extension enabled
    Apr 22 22:06:23 jason-laptop /etc/gdm/Xsession[5439]: JS LOG: Example extension disabled
    Apr 22 22:06:26 jason-laptop /etc/gdm/Xsession[5439]: JS LOG: Example extension enabled
    Apr 22 22:06:26 jason-laptop /etc/gdm/Xsession[5439]: JS LOG: Example extension disabled
    Apr 22 22:06:40 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedes
    Apr 22 22:06:40 jason-laptop dbus[139]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1
    Apr 22 22:06:40 jason-laptop dbus[139]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedeskto
    Apr 22 22:06:40 jason-laptop NetworkManager[135]: <warn> error poking ModemManager: GDBus.Error:org.freedesktop.systemd1.LoadFailed: Unit dbus-org.freedesktop
    Apr 22 22:06:40 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit d
    Apr 22 22:06:46 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Apr 22 22:06:46 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of 0. This shouldn'
    Apr 22 22:06:50 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Apr 22 22:06:50 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of 0. This shouldn'
    Apr 22 22:06:51 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Apr 22 22:06:51 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of 0. This shouldn'
    Apr 22 22:06:52 jason-laptop /etc/gdm/Xsession[5439]: (gnome-shell:5513): St-ERROR **: st_widget_get_theme_node called on the widget [0x5b4c130 StWidget.windo
    Apr 22 22:06:52 jason-laptop kernel: traps: gnome-shell[5513] trap int3 ip:7f9f5ea9aead sp:7fff709891b0 error:0
    Apr 22 22:06:53 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:8 (system bus name :1.339, object path /org/freedesktop/PolicyKi
    Apr 22 22:06:53 jason-laptop /etc/gdm/Xsession[5439]: gnome-session[5439]: WARNING: Application 'gnome-shell.desktop' killed by signal 5
    Apr 22 22:06:53 jason-laptop gnome-session[5439]: WARNING: Application 'gnome-shell.desktop' killed by signal 5
    Apr 22 22:06:53 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.protected: (3) GDBus.Error:org.fr
    Apr 22 22:06:53 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: (3) GDBus.Error:org.freedes
    Apr 22 22:06:53 jason-laptop /etc/gdm/Xsession[5439]: ** Message: applet now removed from the notification area
    Apr 22 22:06:54 jason-laptop polkitd[213]: Registered Authentication Agent for unix-session:8 (system bus name :1.352 [/usr/bin/gnome-shell], object path /org
    Apr 22 22:06:55 jason-laptop /etc/gdm/Xsession[5439]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:06:55 GMT+0200 (SAST)
    Apr 22 22:06:55 jason-laptop /etc/gdm/Xsession[5439]: ** Message: applet now embedded in the notification area
    Apr 22 22:06:57 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Apr 22 22:06:57 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of 0. This shouldn'
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (gnome-settings-daemon:5477): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_type: assertion `GSD
    Apr 22 22:07:14 jason-laptop gdm-password][5429]: pam_unix(gdm-password:session): session closed for user megan
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: last_focus_time (2573262) is greater than comparison timestamp (2573249). This
    Apr 22 22:07:14 jason-laptop colord[303]: device removed: xrandr-cPATH
    Apr 22 22:07:14 jason-laptop colord[303]: Profile removed: icc-6a54eda65912e76a9780062a99424daa
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (evolution-alarm-notify:5585): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error 11 (Resource tempo
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (nm-applet:5586): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily unavailable) on X s
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Received signal:15->'Terminated'
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (tracker-miner-fs:5587): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (tracker-miner-fs:5587): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: (tracker-miner-fs:5587): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Received signal:15->'Terminated'
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: OK
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: OK
    Apr 22 22:07:14 jason-laptop /etc/gdm/Xsession[5439]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 0 (Success) on X server :2.
    Apr 22 22:07:14 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:8 (system bus name :1.352, object path /org/freedesktop/PolicyKi
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GIO: g_dbus_connection_unregister_object: assertion `G_IS_DBUS_CONNECTION (connection)' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GIO: (gdbusinterfaceskeleton.c:735):remove_connection_locked: runtime check failed: (g_dbus_connection_unregister_
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GObject: g_object_unref: assertion `G_IS_OBJECT (object)' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GObject: g_object_ref: assertion `object->ref_count > 0' failed
    Apr 22 22:07:15 jason-laptop gdm[143]: GLib-GObject: g_object_unref: assertion `object->ref_count > 0' failed
    *Edit
    on new user:
    Apr 22 22:18:40 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager
    Apr 22 22:18:42 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: last_focus_time (3261004) is greater than comparison timestamp
    Apr 22 22:18:50 jason-laptop polkitd[213]: Operator of unix-session:9 successfully authenticated as unix-user:jason to gain TEMPORARY author
    Apr 22 22:18:54 jason-laptop accounts-daemon[210]: request by system-bus-name::1.405 [gnome-control-center --overview pid:7379 uid:1000]: cr
    Apr 22 22:18:55 jason-laptop useradd[7387]: new group: name=test, GID=1003
    Apr 22 22:18:55 jason-laptop useradd[7387]: new user: name=test, UID=1003, GID=1003, home=/home/test, shell=/bin/bash
    Apr 22 22:19:00 jason-laptop /etc/gdm/Xsession[6626]: (gnome-control-center:7379): Gtk-WARNING **: GtkComboBox 0xe184a0 is mapped but not ch
    Apr 22 22:19:00 jason-laptop /etc/gdm/Xsession[6626]: (gnome-control-center:7379): Gtk-WARNING **: GtkComboBox 0xe184a0 is mapped but visibl
    Apr 22 22:19:16 jason-laptop sudo[7393]: jason : TTY=pts/1 ; PWD=/home/jason ; USER=root ; COMMAND=/usr/bin/passwd test
    Apr 22 22:19:16 jason-laptop sudo[7393]: pam_unix(sudo:session): session opened for user root by jason(uid=0)
    Apr 22 22:19:17 jason-laptop passwd[7394]: pam_unix(passwd:chauthtok): password changed for test
    Apr 22 22:19:17 jason-laptop sudo[7393]: pam_unix(sudo:session): session closed for user root
    Apr 22 22:19:20 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: CurrentTime used to choose focus window; focus window may not
    Apr 22 22:19:20 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Got a request to focus 0x1800007 (Desktop) with a timestamp of
    Apr 22 22:19:21 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Log level 8: atk_object_notify_state_change: assertion `ATK_IS
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (gnome-settings-daemon:6674): wacom-plugin-CRITICAL **: gsd_wacom_device_get_device_ty
    Apr 22 22:19:22 jason-laptop gdm-password][6617]: pam_unix(gdm-password:session): session closed for user jason
    Apr 22 22:19:22 jason-laptop colord[303]: device removed: xrandr-cPATH
    Apr 22 22:19:22 jason-laptop colord[303]: Profile removed: icc-8db6685c441076be798af3a428be5fb3
    Apr 22 22:19:22 jason-laptop colord[303]: Profile removed: icc-1698c98f460b7dd3e1bf087b3bf0f1ff
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (evolution-alarm-notify:6766): Gdk-WARNING **: evolution-alarm-notify: Fatal IO error
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: (nm-applet:6768): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Resource temporarily u
    Apr 22 22:19:22 jason-laptop /etc/gdm/Xsession[6626]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream r
    Apr 22 22:19:23 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.settings.modify.system: (3
    Apr 22 22:19:23 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.settings.modify.own: (3) G
    Apr 22 22:19:23 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.settings.modify.hostname:
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: Received signal:15->'Terminated'
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: OK
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: (tracker-miner-fs:6769): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: (tracker-miner-fs:6769): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: (tracker-miner-fs:6769): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream r
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: Received signal:15->'Terminated'
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: (tracker-miner-fs:6769): GLib-GIO-CRITICAL **: Error while sending AddMatch() message:
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: (tracker-miner-fs:6769): GLib-GIO-CRITICAL **: Error while sending AddMatch() message:
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: (tracker-miner-fs:6769): GLib-GIO-CRITICAL **: Error while sending AddMatch() message:
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: OK
    Apr 22 22:19:23 jason-laptop /etc/gdm/Xsession[6626]: Window manager warning: Log level 16: gnome-shell: Fatal IO error 0 (Success) on X ser
    Apr 22 22:19:23 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:9 (system bus name :1.397, object path /org/fr
    Apr 22 22:19:23 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.protected: (3)
    Apr 22 22:19:23 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: (3) GDBus
    Apr 22 22:19:24 jason-laptop gdm[143]: GLib-GObject: g_object_ref: assertion `object->ref_count > 0' failed
    Apr 22 22:19:24 jason-laptop gdm[143]: GLib-GObject: g_object_unref: assertion `object->ref_count > 0' failed
    Apr 22 22:19:24 jason-laptop gdm[143]: GdmDisplay: display lasted 0.000842 seconds
    Apr 22 22:19:24 jason-laptop dbus-daemon[139]: dbus[139]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.3"
    Apr 22 22:19:24 jason-laptop dbus[139]: [system] Rejected send message, 1 matched rules; type="method_call", sender=":1.3" (uid=0 pid=143 co
    Apr 22 22:19:24 jason-laptop gdm[143]: Failed to give slave programs access to the display. Trying to proceed.
    Apr 22 22:19:24 jason-laptop systemd-logind[138]: New session c9 of user gdm.
    Apr 22 22:19:24 jason-laptop systemd-logind[138]: Linked /tmp/.X11-unix/X4 to /run/user/120/X11-display.
    Apr 22 22:19:24 jason-laptop /usr/bin/dbus-launch[7430]: gnome-session[7430]: WARNING: Could not parse desktop file /usr/share/gdm/greeter/a
    Apr 22 22:19:24 jason-laptop /usr/bin/dbus-launch[7430]: gnome-session[7430]: WARNING: could not read /usr/share/gdm/greeter/autostart/orca-
    Apr 22 22:19:24 jason-laptop gnome-session[7430]: WARNING: Could not parse desktop file /usr/share/gdm/greeter/autostart/orca-autostart.desk
    Apr 22 22:19:24 jason-laptop gnome-session[7430]: WARNING: could not read /usr/share/gdm/greeter/autostart/orca-autostart.desktop
    Apr 22 22:19:24 jason-laptop gnome-session[7430]: Entering running state
    Apr 22 22:19:25 jason-laptop colord[303]: Automatic metadata add icc-2927396d048bf9f6cf9bafb6cc5812bd to xrandr-cPATH
    Apr 22 22:19:25 jason-laptop colord[303]: Device added: xrandr-cPATH
    Apr 22 22:19:25 jason-laptop /usr/bin/dbus-launch[7430]: (gnome-settings-daemon:7451): Gvc-WARNING **: Failed to connect context: OK
    Apr 22 22:19:25 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus
    Apr 22 22:19:25 jason-laptop dbus[139]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.l
    Apr 22 22:19:25 jason-laptop systemd[1]: Starting Locale Service...
    Apr 22 22:19:25 jason-laptop dbus-daemon[139]: dbus[139]: [system] Successfully activated service 'org.freedesktop.locale1'
    Apr 22 22:19:25 jason-laptop dbus[139]: [system] Successfully activated service 'org.freedesktop.locale1'
    Apr 22 22:19:25 jason-laptop systemd[1]: Started Locale Service.
    Apr 22 22:19:25 jason-laptop colord[303]: Automatic metadata add icc-769897d73224d671dd9c42828fd0e962 to xrandr-cPATH
    Apr 22 22:19:25 jason-laptop colord[303]: Profile added: icc-769897d73224d671dd9c42828fd0e962
    Apr 22 22:19:25 jason-laptop /usr/bin/dbus-launch[7430]: (gnome-shell:7458): Gvc-WARNING **: Failed to connect context: OK
    Apr 22 22:19:25 jason-laptop polkitd[213]: Registered Authentication Agent for unix-session:c9 (system bus name :1.417 [gnome-shell --mode=g
    Apr 22 22:19:26 jason-laptop /usr/bin/dbus-launch[7430]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:19:26 GMT+0200 (SAST)
    Apr 22 22:19:29 jason-laptop gdm-password][7480]: pam_unix(gdm-password:session): session opened for user test by (unknown)(uid=0)
    Apr 22 22:19:29 jason-laptop systemd-logind[138]: New session 11 of user test.
    Apr 22 22:19:29 jason-laptop systemd-logind[138]: Linked /tmp/.X11-unix/X4 to /run/user/1003/X11-display.
    Apr 22 22:19:29 jason-laptop /usr/bin/dbus-launch[7430]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStrea
    Apr 22 22:19:29 jason-laptop /usr/bin/dbus-launch[7430]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStrea
    Apr 22 22:19:29 jason-laptop colord[303]: device removed: xrandr-cPATH
    Apr 22 22:19:29 jason-laptop colord[303]: Profile removed: icc-769897d73224d671dd9c42828fd0e962
    Apr 22 22:19:29 jason-laptop /usr/bin/dbus-launch[7430]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStrea
    Apr 22 22:19:29 jason-laptop gdm[143]: Failed to remove slave program access to the display. Trying to proceed.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: /etc/gdm/Xsession: Beginning session setup...
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: (process:7510): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: localuser:test being added to access control list
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    Apr 22 22:19:29 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:c9 (system bus name :1.417, object path /org/f
    Apr 22 22:19:29 jason-laptop systemd-logind[138]: Removed session c9.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: (process:7488): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: (process:7528): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: W: [pulseaudio] authkey.c: Failed to open cookie file '/home/test/.config/pulse/cookie
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: W: [pulseaudio] authkey.c: Failed to load authorization key '/home/test/.config/pulse/
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: W: [pulseaudio] authkey.c: Failed to open cookie file '/home/test/.pulse-cookie': No s
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: W: [pulseaudio] authkey.c: Failed to load authorization key '/home/test/.pulse-cookie'
    Apr 22 22:19:29 jason-laptop rtkit-daemon[452]: Successfully made thread 7543 of process 7543 (/usr/bin/pulseaudio) owned by '1003' high pri
    Apr 22 22:19:29 jason-laptop rtkit-daemon[452]: Supervising 1 threads of 1 processes of 1 users.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: GNOME_KEYRING_CONTROL=/run/user/1003/keyring-xhhFii
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: SSH_AUTH_SOCK=/run/user/1003/keyring-xhhFii/ssh
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: GNOME_KEYRING_CONTROL=/run/user/1003/keyring-xhhFii
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: SSH_AUTH_SOCK=/run/user/1003/keyring-xhhFii/ssh
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: GNOME_KEYRING_CONTROL=/run/user/1003/keyring-xhhFii
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: SSH_AUTH_SOCK=/run/user/1003/keyring-xhhFii/ssh
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: GPG_AGENT_INFO=/run/user/1003/keyring-xhhFii/gpg:0:1
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: GNOME_KEYRING_CONTROL=/run/user/1003/keyring-xhhFii
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: SSH_AUTH_SOCK=/run/user/1003/keyring-xhhFii/ssh
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: GPG_AGENT_INFO=/run/user/1003/keyring-xhhFii/gpg:0:1
    Apr 22 22:19:29 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.ser
    Apr 22 22:19:29 jason-laptop dbus[139]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Apr 22 22:19:29 jason-laptop dbus-daemon[139]: dbus[139]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbu
    Apr 22 22:19:29 jason-laptop dbus[139]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.servic
    Apr 22 22:19:29 jason-laptop pulseaudio[7543]: [pulseaudio] bluetooth-util.c: org.bluez.Manager.GetProperties() failed: org.freedesktop.syst
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: Locale not understood by C library, internationalization will
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: (gnome-shell:7567): Clutter-WARNING **: Locale not supported by C library.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: (gnome-shell:7567): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:29 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:30 jason-laptop colord[303]: Automatic metadata add icc-2927396d048bf9f6cf9bafb6cc5812bd to xrandr-cPATH
    Apr 22 22:19:30 jason-laptop colord[303]: Device added: xrandr-cPATH
    Apr 22 22:19:30 jason-laptop colord[303]: Automatic metadata add icc-9864b83a5ba580211a04245ae40e8090 to xrandr-cPATH
    Apr 22 22:19:30 jason-laptop colord[303]: Profile added: icc-9864b83a5ba580211a04245ae40e8090
    Apr 22 22:19:30 jason-laptop goa[7602]: goa-daemon version 3.8.1 starting [main.c:113, main()]
    Apr 22 22:19:31 jason-laptop polkitd[213]: Registered Authentication Agent for unix-session:11 (system bus name :1.439 [/usr/bin/gnome-shell
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: (process:7624): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:31 jason-laptop gnome-session[7488]: Entering running state
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:19:31 GMT+0200 (SAST)
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: (process:7628): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: Creating config directory:'/home/test/.config/tracker'
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: (process:7632): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:31 jason-laptop systemd-logind[138]: Removed session 9.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: (process:7626): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: Failed to play sound: File or data not found
    Apr 22 22:19:31 jason-laptop /etc/gdm/Xsession[7488]: ** Message: applet now removed from the notification area
    Apr 22 22:19:32 jason-laptop /etc/gdm/Xsession[7488]: ** Message: applet now embedded in the notification area
    Apr 22 22:19:36 jason-laptop /etc/gdm/Xsession[7488]: (nautilus:7735): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:36 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:36 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: CurrentTime used to choose focus window; focus window may not
    Apr 22 22:19:36 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: Got a request to focus the no_focus_window with a timestamp of
    Apr 22 22:19:45 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: CurrentTime used to choose focus window; focus window may not
    Apr 22 22:19:45 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: Got a request to focus the no_focus_window with a timestamp of
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: (nautilus:7748): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: CurrentTime used to choose focus window; focus window may not
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: Got a request to focus the no_focus_window with a timestamp of
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: (gnome-shell:7567): St-ERROR **: st_widget_get_theme_node called on the widget [0x35e8
    Apr 22 22:19:47 jason-laptop kernel: traps: gnome-shell[7567] trap int3 ip:7f73b0bfaead sp:7ffffc2d2840 error:0
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: ** Message: applet now removed from the notification area
    Apr 22 22:19:47 jason-laptop polkitd[213]: Unregistered Authentication Agent for unix-session:11 (system bus name :1.439, object path /org/f
    Apr 22 22:19:47 jason-laptop gnome-session[7488]: WARNING: Application 'gnome-shell.desktop' killed by signal 5
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: gnome-session[7488]: WARNING: Application 'gnome-shell.desktop' killed by signal 5
    Apr 22 22:19:47 jason-laptop polkitd[213]: Error converting subject to JS object: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Cou
    Apr 22 22:19:47 jason-laptop NetworkManager[135]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: (3) GDBus
    Apr 22 22:19:47 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: Locale not understood by C library, internationalization will
    Apr 22 22:19:48 jason-laptop /etc/gdm/Xsession[7488]: (gnome-shell:7760): Clutter-WARNING **: Locale not supported by C library.
    Apr 22 22:19:48 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:48 jason-laptop /etc/gdm/Xsession[7488]: (gnome-shell:7760): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:48 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:19:49 jason-laptop polkitd[213]: Registered Authentication Agent for unix-session:11 (system bus name :1.448 [/usr/bin/gnome-shell
    Apr 22 22:19:49 jason-laptop /etc/gdm/Xsession[7488]: JS LOG: GNOME Shell started at Mon Apr 22 2013 22:19:49 GMT+0200 (SAST)
    Apr 22 22:19:50 jason-laptop /etc/gdm/Xsession[7488]: ** Message: applet now embedded in the notification area
    Apr 22 22:19:54 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: CurrentTime used to choose focus window; focus window may not
    Apr 22 22:19:54 jason-laptop /etc/gdm/Xsession[7488]: Window manager warning: Got a request to focus the no_focus_window with a timestamp of
    Apr 22 22:19:58 jason-laptop /etc/gdm/Xsession[7488]: (process:7846): Gtk-WARNING **: Locale not supported by C library.
    Apr 22 22:19:58 jason-laptop /etc/gdm/Xsession[7488]: Using the fallback 'C' locale.
    Apr 22 22:20:01 jason-laptop su[7861]: (to jason) test on /dev/pts/0
    Apr 22 22:20:01 jason-laptop su[7861]: pam_unix(su:session): session opened for user jason by test(uid=1003)
    Apr 22 22:20:08 jason-laptop sudo[7864]: jason : TTY=pts/0 ; PWD=/home/test ; USER=root ; COMMAND=/usr/bin/journalctl --since=yesterday
    Apr 22 22:20:08 jason-laptop sudo[7864]: pam_unix(sudo:session): session opened for user root by test(uid=0)
    Last edited by jrussell (2013-04-22 20:23:13)

    I just had this same crash again, with chromium, nautilus and gnome-terminal open
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: avahi-daemon 0.6.31 starting up.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
    Jul 21 11:55:26 jason-laptop systemd[1]: Started Avahi mDNS/DNS-SD Stack.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Successfully called chroot().
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Successfully dropped remaining capabilities.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Loading service file /services/sftp-ssh.service.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Loading service file /services/ssh.service.
    Jul 21 11:55:26 jason-laptop sudo[1028]: pam_unix(sudo:session): session closed for user root
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Joining mDNS multicast group on interface wlan0.IPv4 with address 10.0.0.39.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: New relevant interface wlan0.IPv4 for mDNS.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Network interface enumeration completed.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Registering new address record for fe80::21c:26ff:feca:be4b on wlan0.*.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Registering new address record for 10.0.0.39 on wlan0.IPv4.
    Jul 21 11:55:26 jason-laptop avahi-daemon[1031]: Registering HINFO record with values 'X86_64'/'LINUX'.
    Jul 21 11:55:27 jason-laptop avahi-daemon[1031]: Server startup complete. Host name is jason-laptop.local. Local service cookie is 339391358.
    Jul 21 11:55:28 jason-laptop avahi-daemon[1031]: Service "jason-laptop" (/services/ssh.service) successfully established.
    Jul 21 11:55:28 jason-laptop avahi-daemon[1031]: Service "jason-laptop" (/services/sftp-ssh.service) successfully established.
    Jul 21 11:56:13 jason-laptop dbus-daemon[225]: dbus[225]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedes
    Jul 21 11:56:13 jason-laptop dbus[225]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1
    Jul 21 11:56:13 jason-laptop dbus[225]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedeskto
    Jul 21 11:56:13 jason-laptop dbus-daemon[225]: dbus[225]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit d
    Jul 21 11:56:34 jason-laptop sudo[789]: pam_unix(sudo:session): session closed for user root
    Jul 21 11:56:46 jason-laptop sudo[1125]: jason : TTY=pts/1 ; PWD=/home/jason ; USER=root ; COMMAND=/usr/bin/pacman -S gnome-tweak-tool
    Jul 21 11:56:46 jason-laptop sudo[1125]: pam_unix(sudo:session): session opened for user root by (uid=0)
    Jul 21 11:56:52 jason-laptop sudo[1125]: pam_unix(sudo:session): session closed for user root
    Jul 21 11:57:01 jason-laptop kernel: gnome-shell[527]: segfault at 1 ip 00007fb0166eb670 sp 00007fffa11a2038 error 4 in libglib-2.0.so.0.3600.3[7fb0166b3000+f
    Jul 21 11:57:01 jason-laptop /etc/gdm/Xsession[426]: ** Message: applet now removed from the notification area
    Jul 21 11:57:02 jason-laptop /etc/gdm/Xsession[426]: gnome-session[426]: WARNING: Application 'gnome-shell.desktop' killed by signal 11
    Jul 21 11:57:01 jason-laptop polkitd[242]: Unregistered Authentication Agent for unix-session:1 (system bus name :1.47, object path /org/freedesktop/PolicyKit
    Jul 21 11:57:01 jason-laptop gnome-session[426]: WARNING: Application 'gnome-shell.desktop' killed by signal 11
    Jul 21 11:57:01 jason-laptop NetworkManager[223]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.protected: (3) GDBus.Error:org.fr
    Jul 21 11:57:01 jason-laptop NetworkManager[223]: <warn> error requesting auth for org.freedesktop.NetworkManager.wifi.share.open: (3) GDBus.Error:org.freedes
    Jul 21 11:57:03 jason-laptop /etc/gdm/Xsession[426]: JS LOG: GNOME Shell started at Sun Jul 21 2013 11:57:03 GMT+0200 (SAST)
    Jul 21 11:57:03 jason-laptop polkitd[242]: Registered Authentication Agent for unix-session:1 (system bus name :1.64 [/usr/bin/gnome-shell], object path /org/
    Jul 21 11:57:04 jason-laptop /etc/gdm/Xsession[426]: ** Message: applet now embedded in the notification area
    Jul 21 11:57:04 jason-laptop kernel: nouveau E[ PGRAPH][0000:01:00.0] DATA_ERROR INVALID_VALUE
    Jul 21 11:57:04 jason-laptop kernel: nouveau E[ PGRAPH][0000:01:00.0] DATA_ERROR
    Jul 21 11:57:04 jason-laptop kernel: nouveau E[ PGRAPH][0000:01:00.0] ch 4 [0x000f949000 gnome-shell[1170]] subc 3 class 0x8297 mthd 0x0e04 data 0xffcc0000
    Jul 21 11:57:25 jason-laptop /etc/gdm/Xsession[426]: [106:107:0721/115725:ERROR:audio_output_device.cc(186)] Not implemented reached in virtual void media::Au
    Jul 21 11:57:35 jason-laptop /etc/gdm/Xsession[426]: [106:107:0721/115735:ERROR:audio_output_device.cc(186)] Not implemented reached in virtual void media::Au
    Jul 21 11:58:13 jason-laptop dbus-daemon[225]: dbus[225]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedes
    Jul 21 11:58:13 jason-laptop dbus[225]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1
    Jul 21 11:58:13 jason-laptop dbus[225]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedeskto
    Jul 21 11:58:13 jason-laptop dbus-daemon[225]: dbus[225]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit d
    Jul 21 11:59:38 jason-laptop sudo[1387]: jason : TTY=pts/1 ; PWD=/home/jason ; USER=root ; COMMAND=/usr/bin/journalctl -b
    Jul 21 11:59:38 jason-laptop sudo[1387]: pam_unix(sudo:session): session opened for user root by (uid=0)
    lines 1289-1334/1334 (END)
    Might have happened as I installed gnome-tweak-tool
    Last edited by jrussell (2013-07-21 10:02:47)

  • Solaris 9 / GNOME 2.0 / SunPCI II problem

    Hello. I have Solaris 9 on a SunBlade 100 with SunPCI II (running Windows 2000 Professional). Both OSes have the latest patches. When running under Gnome 2.0 the SunPCI/Windows requires multiple clicks of the mouse to affect any controls. For example, launching IE from the taskbar ought to take one click and it does this when running under CDE. But under Gnome I have to double, triple, quadruple click before it will launch. I cannot open the start menu because one-click does not affect it, but double-click opens and then immediately closes it. Other controls have similar problems. Native Solaris/Gnome apps are not affected - only Windows/SunPCI. Has anyone run into this strange problem, and if so what is the solution? Thanks.
    Viren Patel
    Chemistry & Biochemistry
    University of Texas at Austin

    Personally I think JDS3 is a bit awkward and
    certainly not as nice to use as Gnome2. I was
    disappointed to see the CDE apps menu has disappeared
    too, I had to figure out where certain apps are on
    the HDD, something I never thought to do in the past.
    Specifically I was looking for SMC, which I
    eventually found in /usr/sadm/bin/smc.
    I was under the impression from Sun's own
    documentation, that Gnome would be the replacement
    for CDE, I figured they'd included it with latter
    Solaris9 installs as a stop gap. I also noticed that
    when I installed Solaris10, I saw a message box
    mention KDE a few times so I expected to see an
    option for KDE as well. Dunno if it's hidden away
    somewhere but I'd sure like to know what it was all
    about.I wonder whether one can get rid of some of the JDS stuff and just use the GNOME part. I never understood why so many of the desktop environments try to immitate Windows even to the extent that there is a launch (aka start) button.
    Matthias

Maybe you are looking for