[SOLVED] Gnome notification area has wrong background color

I'm using the Shiki-Brave theme on Gnome and all (yes, all) of the tray icons have the wrong background color.  The color changes slighty if I select another Shiki theme, but is pretty close to the default gray.  Strangely, I only have this issue on my desktop at home -- none of my other machines (two laptops and a desktop at work) exhibit the problem.  I have ensured that the theme is exactly the same on all machines.  Another oddity is that other themes (e.g. high contrast inverse) have the right background color!
The only thing I have managed to find via Google is a bug report against Gnome.  Here is what I have tried:
* Removing and readding the applet to the panel.
* Blowing away all my settings (rm -rf .gnome2 .gconf .gconfd .local) and setting things up again.  To be sure I did not miss anything, I also tried creating a new user with a clean home.  Still the same issue.
* Removing and reinstalling all of the gnome and gnome_extra groups.  I even cleared the pacman cache to force a redownload.
Any ideas?  I'm at a loss on what to try next.
Thanks!
Last edited by kdorf (2011-04-09 06:29:51)

I figured out the problem.
I have an NVIDIA card and I recently modified my X server to use Xinerama instead of TwinView.  Xinerama was responsible for all this nastiness.  Reverting to TwinView fixed the problem (and some other weird ones that started popping up).
Those of you with NVIDIA cards, avoid Xinerama!

Similar Messages

  • Gnome-keyboard-applet uses wrong background color

    gnome-keyboard-applet always uses white color as a background, even when panel's color is not white.
    (Or, maybe, not exactly white, but it's clearly different from panel's color)
    WTF?

    It seems that this is the problem with theme. I'm using gnome-human-theme from AUR.
    With other murrine themes it's OK. Does somebody know where in gtkrc is the color value, which is responsible for that?

  • E book" it tells me that the bI have prepared a photobook, made a pdf and when I press "buy the book is missing photos on one ore more pages. The book does not miss any photos or text, all layouts are ok, the background color is ok. Can anybody help me?

    I have prepared a photo book, made a pdf and when I press "buy thhe book" it tells me that the book is missing photos on one ore more pages. The book does not miss any photos or text, all layouts are ok, the background color is ok. Can anybody help me?

    You are missing one or more photos - youprobably have a page background that requires a photo which is behind a page with photos on it - all pages must either have a photo or be a color - if you have a gray background it requires a photo - look through the book carefully and be sure to look at the background on any full page photos - you will find one or more missing photos
    LN

  • [SOLVED] Xfce4 notification area & gnome icons

    I have in notification area loaded gnome icons for sound and bluetooth and it's look like that:
    http://tinypic.com/r/2nvwab4/6
    I tried change the icon style in gnome-tweak-tool reload X several times but I'm still seeing ugly black icons and I have no idea how to fix it.
    Have any of you same problem? Or even better solution for it?
    Last edited by camp (2012-07-02 16:51:36)

    When I switched from gnome to xfce, I replaced the sound menu with volumeicon and pavucontrol. As for bluetooth, I use bluemon now.

  • Gnome notification area (Solved)

    So i've been browsing the ubuntuforums since lucid was released and noticed that they all have nice looking icons in the notification area. They're unified icons, which i can't seem to get in gnome in arch.
    Here's a screenshot to show what i'm talking about:
    http://i.imgur.com/9WG48.jpg
    It doesn't seem to be just the lucid icon theme which achieves this, as that screenshot is using elementary icons. I've searched the AUR and can't find any modded notification area...
    Anybody got an idea how Arch can have this look?
    BTW i'm not talking about the OSD, i already have that..
    Last edited by Mountainjew (2010-05-26 16:28:29)

    Maybe there are some to your taste in this one:
    http://gnome-look.org/content/show.php/ … tent=73439
    Don't know which package holds the elemntary icons in ubuntu, artwork/gnome or something? you should be able to extract them from there
    ubuntu-mono
    http://archive.ubuntu.com/ubuntu/pool/m … .18.tar.gz
    Last edited by hokasch (2010-05-26 15:47:11)

  • How do you make a transparent spry menu that has a background color on sub menus?

    Hi i am a total newbie at html and css scripting/coding and i've been working on creating a website of course because im here and i have search and search and i've found a few topics about this but none of them have what i want and it would be helpful if when you post the reply you explain it so hopefully i can add on and learn but i am trying to get the background color on the sub menus #1A1A1A and then the menu it self transparent here is my code it might make no sense at all since im a newbie ;P
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
              margin: 0 auto;
              padding: 0;
              list-style-type: none;
              font-size: small;
              cursor: default;
              width: 100em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 18px;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 10.8em;
              float: left;
              visibility: visible;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 8.2em;
              position: absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 15em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    ul.MenuBarHorizontal ul
              border: 0px solid #1A1A1A;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: transparent;
              padding: 9px;
              color: #FFF;
              text-decoration: #1A1A1A;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              font-weight: bold;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 18px;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #0048ff;
              color: #EEE;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarDown.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-color:#1A1A1A
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarRightHover.gif);
              background-repeat: no-repeat;
              background-position: 85% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background: #222222;

    Hi and welcome -
    Start with fixing this missing semicolon  (in red)
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    You will find you will get faster, more accurate help from us if you upload your test page and any dependent files to your server and post a link here.  That way we can examine ALL your code

  • Transparent spry menu that has a background color on sub menus and a few other problems(Please Help)

    Hi im a noob at dream weaver and i've been trying to create a menu and i have been having problems with this menu bar i don't know what to upload and i have made a topic about this before but i only got one reply and so i am trying to make my menu bar transparent and then the sub menu's colored with the color code #1A1A1A and the menu bars that have been color background are only the sub sub menu bars if you know what i mean and also my other problem is the spacing i have between each option is really uneven is there a way to make them evenly sperated apart from each other rather than just the size of a "box" that the text is in. Here is my SpryMenuBarHorizontal.css code
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
              margin: 0 auto;
              padding: 0;
              list-style-type: none;
              font-size: small;
              cursor: default;
              width: 100em;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 18px;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 10.8em;
              float: left;
              visibility: visible;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 8.2em;
              position: absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 15em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    ul.MenuBarHorizontal ul
              border: 0px solid #1A1A1A;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: transparent;
              padding: 9px;
              color: #FFF;
              text-decoration: #1A1A1A;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              font-weight: bold;
              font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
              font-size: 18px;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #0048ff;
              color: #EEE;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
                          background-color: #1A1A1A
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-color:#1A1A1A;
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-color:#1A1A1A
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-color: #1A1A1A
              background-repeat: no-repeat;
              background-position: 85% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background-color: #1A1A1A;

    See if this post helps :
    http://forums.adobe.com/message/1997762#1997762
    and this one:
    http://forums.adobe.com/message/1898539#1898539
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • [Solved] Lua with Conky gives unwanted background color

    Hi,
    I've Googled and ransacked the forum looking for an answer. I have Conky with lua on KDE4 and I cannot run both together without creating an unwanted background. After getting sidetracked with KDE4 transparency considerations, I discovered that if I start Conky without Lua, I can get proper transparency. If I start Conky with Lua enabled I get a background color. The Lua script doesn't seem to have any background settings. I'm not sure what files are relevant to post, the conkyrc and or the Lua script, which is quite large. I'm reasonably au fait with Conky but this is the first Conky I cannot get to function correctly. My basic question is how to use Lua without starting a background color. Here is where I got the original files http://www.linuxandlife.com/2012/06/get … -your.html . Of course, I can post the relevant Lua file if necessary but, as I  mentioned, it is quite large and I'm not clear on forum rules regarding posting large files of this type. Here's how Conky starts Lua:
    lua_load ~/.conky/avi9526_conky.lua
    lua_draw_hook_pre Widgets
    Thanks for your time.
    In case anyone is interested, changing line 1236 of the Lua script to cairo_set_source_rgba(CairoContext, 0.6, 0.61, 0.62, 0.0) did the trick.
    Last edited by Foxblood (2013-04-28 14:07:15)

    If you set your minimum_size and maximum_width variables you can make it any size that you want.
    So, lets say that you are using a 1280x1024 screensize.
    You can set your minimum_size to be 1200.  If you don't provide a second option, you are specifying the width.
    Then, if you set your maximum_width to be 1280,  or, if you want a 1 pixel gap on either side 1278,  then your conky will not go off the sides of the screen, and if you use any align option, then it will stay within that specified width.
    P.S.  The reason that it doesn't go all the way across your screen right now, is because there is not enough information being displayed to warrant anything larger.
    HTH
    Last edited by Knute (2010-08-09 21:22:17)

  • [SOLVED] IceWM: "notification area" / taskbar / system tray

    Hello!
    I've recently moved from Gnome to IceWM. It all works nicely but there's a problem. In Gnome (and KDE and fluxbox and pypanel and ...) there was a "notification area" / taskbar / system tray where you could see "minimized to tray" programs, such as: Wicd, Deluge, Transmission, Emesene, etc... But in IceWM that doesn't exist. Well this is a pain in the *ss. I mean, I open deluge, minimize it and now I can't open its main window again.
    Can some IceWM user help me?
    Thanks, acmps
    Last edited by acmps (2010-01-06 15:19:06)

    bernarcher wrote:
    It should be all there in a default IceWM setup, esp. does IceWM hava a built-in system tray.
    Mostly it depends on how you start IceWM. You need to execute icewm-session in your ~/.xinitrc, as e.g.
    exec icewm-session
    Or if you want to start IceWM manually, use
    xinit /usr/bin/icewm-session
    There should be a ~/.icewm folder. If not, create one and copy /usr/share/icewm/{keys,menu,preferences,toolbar,winoptions} there. These are well commented setup files which you can change to your needs with any text editor.
    Thanks! I was used to start IceWM with "exec icewm" in xinitrc, but it seems like it's icewm-session. About the .icewm folder, I already have it. I'm going to try and start IceWM with icewm-session right away.
    EDIT: It seems like I don't need to start icewm-session to get the tray, just icewm and icewmtray. Thanks!
    Last edited by acmps (2010-01-06 15:18:47)

  • [SOLVED] GNOME 3.16 + GDM Login & Background Image

    It's being surprisingly difficult to understand what's needed in order to have a login screen that does not contain the default noise PNG as background.
    Apparently now the default theme is a gresource so common css overwrite don't seem to make it.
    How did you folks solved this problem?
    Apologies if already discussed, it's just that the problem is NOT the GNOME Desktop Background, and NOT the lock screen, just ONLY the gdm background screen during login.
    Other tricks seem to not work neither:
    sudo -u gdm dbus-launch gsettings set org.gnome.desktop.screensaver picture-uri '/new/picture.png'
    Thanks for any sort of help with this and Best Regards
    Last edited by WebReflection (2015-05-06 19:00:05)

    I finally got this to work. The wiki needs updating as of now it only states that gnome shell theme is now in a binary format, but not how to extract and repack it afterwards...
    Anyway this is how i got it to work.
    Use this script to extract gnome-shell-theme inside your choosen working directory
    extractgst.sh
    #! /bin/sh
    #change workdir to suit your system
    workdir=/home/merlin/temp/GS/test
    gst=/usr/share/gnome-shell/gnome-shell-theme.gresource
    mkdir theme
    for r in `gresource list $gst`; do
    gresource extract $gst $r >$workdir${r/#\/org\/gnome\/shell/}
    done
    Once you've run the script you should have the theme extracted to the theme folder which was created inside your workdir.
    Now you can proceed to add a background image to this folder and edit gnome-shell.css by following the wiki page.
    You must now create the file gnome-shell-theme.gresource.xml inside the theme directory. Simply copy paste the xml code below into  gnome-shell-theme.gresource.xml,  making sure to change the line that refers to your background image. On my system the background image is named login-background.jpg
    <?xml version="1.0" encoding="UTF-8"?>
    <gresources>
    <gresource prefix="/org/gnome/shell/theme">
    <file>calendar-arrow-left.svg</file>
    <file>calendar-arrow-right.svg</file>
    <file>calendar-today.svg</file>
    <file>checkbox-focused.svg</file>
    <file>checkbox-off-focused.svg</file>
    <file>checkbox-off.svg</file>
    <file>checkbox.svg</file>
    <file>close-window.svg</file>
    <file>close.svg</file>
    <file>corner-ripple-ltr.png</file>
    <file>corner-ripple-rtl.png</file>
    <file>dash-placeholder.svg</file>
    <file>filter-selected-ltr.svg</file>
    <file>filter-selected-rtl.svg</file>
    <file>gnome-shell.css</file>
    <file>gnome-shell-high-contrast.css</file>
    <file>logged-in-indicator.svg</file>
    <file>login-background.jpg</file>
    <file>more-results.svg</file>
    <file>no-events.svg</file>
    <file>no-notifications.svg</file>
    <file>noise-texture.png</file>
    <file>page-indicator-active.svg</file>
    <file>page-indicator-inactive.svg</file>
    <file>page-indicator-checked.svg</file>
    <file>page-indicator-hover.svg</file>
    <file>process-working.svg</file>
    <file>running-indicator.svg</file>
    <file>source-button-border.svg</file>
    <file>summary-counter.svg</file>
    <file>toggle-off-us.svg</file>
    <file>toggle-off-intl.svg</file>
    <file>toggle-on-us.svg</file>
    <file>toggle-on-intl.svg</file>
    <file>ws-switch-arrow-up.png</file>
    <file>ws-switch-arrow-down.png</file>
    </gresource>
    </gresources>
    now the only thing left to do is to run
    cd ./theme
    glib-compile-resources gnome-shell-theme.gresource.xml
    It will create a gresource file that you can swap in /usr/share/gnome-shell.
    Good luck and hopefully I will save many some headache. Took me quite a while to get the whole thing working
    Last edited by atrotet (2015-05-06 04:49:36)

  • Gnome notification area problem

    Helloooo archaholics.
    So, I have the notification applet in the gnome panel but apps like liferea, banshee etc, are putting the icons in a floating small metacity window instead. Like crazy style.
    Can any kind folk tell me, is it a bug? is it a feature? is it a bit too hard to tell these days?
    Cheers
    gnome-2.14 including deps. Rest of system is [current].

    how does .xinitrc look like ??? make it look like the below code (for gnome of course)
    exec dbus-launch --exit-with-session /opt/gnome/bin/gnome-session

  • All Cells are Not getting Background Color in WAD

    Hello All,
    I have a query with 29 Columns and Nearly 1000 Rows.
    This query is being displayed through WAD.
    I have used  com.sap.ip.bi.rig.Format to color different columns : e.g.
    1st - 8th column -> Color Green
    9th - 10th -> Color Red etc.
    Also, in the Analysis Web Item properties, the values are:
    BLOCK_COLUMN_SIZE = 50
    BLOCK_COLUMNS_STEP_SIZE = 1
    BLOCK_ROWS_SIZE = 1000
    BLOCK_ROWS_STEP_SIZE = 0
    My Issue: For all columns , a few of the Cells are not getting colured. They are absolutely random.
    When I reduce the data volume (restrict to some region), all the columns are properly colured.
    Please Help to fix the issue.
    Thanks,
    Mainak

    Closing the thread as seems below note answers my query:
    1648692  Modification Format styles not applied on huge result set
    Thanks,
    Mainak

  • [SOLVED] GNOME + play icon has changed

    After the latest gnome updates (gnome-icon-theme 3.2.1-1), i noticed my play button (in my uber-cool Goggles Music Manager) looked funny. The  play icon (shaped like an arrow) used to always point to the right, it now has changed directions and points to the left instead. You can see for yourself:
    /usr/share/icons/gnome/48x48/actions/media-playback-start.png
    I wonder why and if I'm the only one annoyed by this...
    Edit: Was fixed in gnome-icon-theme-3.2.1.2-1
    Last edited by GogglesGuy (2011-10-20 12:14:34)

    Jodell wrote:My icon points to the right...
    You're probably not using [testing]

  • [SOLVED] GNOME's "Something went wrong" msg, how to know what's wrong?

    Is it possible to know what is wrong? I searched this forum a bit, usually `startx` and ~/.xsession-errors file are mentioned, but I don't use the former, and I don't have the latter. I login through GDM, running it as systemd service.
    Last edited by statc (2012-11-04 08:05:47)

    Try looking in ~/.cache/gdm/session.log.

  • Background colors are now gone from every web page...

    This happened just this morning. I've never seen this before. I don't believe it is my Netscape browser setting. I'm befuddled. Any ideas?
    Thanks.
    ~Raymon
    2002 G4 933 MHz Quicksilver, 1.54 GB RAM, two 160 GB HD,   Mac OS X (10.4.8)   iLife'06

    Yup! Thank you. That was it. I was there earlier in the day trying out different settings and must have left it on the wrong background color option.
    My Excite home page is still missing background colors. But I now recall other times when Excite would have temporary maintenance episodes causing the "problem".
    ~Raymon

Maybe you are looking for

  • Webutil Host bean error

    I'm trying to use the webutil.nonblocking procedure, i followed all the steps in the user guide to install the webutil and i attached the library to the form and subclassed the object group, but when running the form i receive this error oracle.forms

  • Mac HDMI to TV suddenly stops working

    10.9.4 mavericks macbook pro retina to TV via HDMI using an HDMI cable to watch movies on my laptop macbook pro retina. was working this morning, and watched a movie. then I go to work, and come back and now the exact setup is no longer working. it d

  • Suddenly, my videos on the iPhone5 have no sound.

    Suddenly videos on my iPhone 5, which were fine before, have no sound.  I've searched in "Settings" but find nothing that applies to sound for videos.  I'm wondering if I'm looking in the wrong place.

  • Able to connect via Oracle SQL Developer, but not sql plus

    Using Oracle 10.2.0. I can connect using the TNS connection type in SQL Developer, but cannot do so in SQL PLUS. SQL Plus gives me the error -- could not resolve the connect identifier. When I do tnsping USPO_ADHOC, I get: C:\oracle\product\10.2.0\cl

  • Starting Photoshop Elements 2.0

    When I try to start the program for the first time - just installed it - I get the error message "Could not initialize Photoshop Elements because the scratch disks are full".  The error is a fatal one - big cross on the left had side - program closes