I3 tray icons not visible

Hi.
I've been using xfce4, but wanted to try i3.
The problem is that tray icons doesn't show in the status bar. I've tried fiddling with font sizes and "tray_output", but nothing helps.
Btw, I'm on a single display laptop.
Any pointers?

Not sure if I understand what happened, but I get the impression that you have figured out whatever problem it was you were having. Please add [SOLVED] to your post title, if that is the case. If not, a little more clarification regarding the problem you are experiencing would not go amiss.
All the best,
-HG

Similar Messages

  • Why are the jpeg icons not visible in finder when created by PS6

    Why are the jpeg icons not visible in finder when created by PS6

    hi
    I have faced the same problem ... I didn't find the solution yet
    but please visit this link http://www.oracle.com/technology/products/forms/pdf/webicons.pdf
    you'll get everything you want to know
    I'm not try it yet.
    Best wishes

  • Sometimes Tray Icon not loaded correctly

    I am trying to make my (html/ajax) website available as a desktop application, (with little enhancements like notifications in the background etc.)  without writing any extra code. Everything works fine except the tray icon. Sometimes the tray icon is not loading correctly.
    Following is the structure of my sample air application.
    1. An html page(page1.html) i am using as my inital window.
    It creates an invisible html window and loads a new page (page2.html) as below.
            var options = new air.NativeWindowInitOptions();
            options.systemChrome = "standard";
            var windowBounds = new air.Rectangle(200,250,300,400);
            newHTMLLoader = air.HTMLLoader.createRootWindow(false, options, false, windowBounds);
            newHTMLLoader.window.mainAppWindow = window;
            newHTMLLoader.load(new air.URLRequest("page2.html"));
    and later redirecting to the website.
    2. I am using this invisible html window to control the application behavior (like sending ajax requests in the background, monitoring network, checking for updates etc.)
    page2.html contains code to load the tray icon for the application.
    Here is javascript the code in page2.html
    function BgWindow(){
            this.init = function(){
                this.loadTrayIcon();
            var iconLoadComplete = function(event){
                air.NativeApplication.nativeApplication.icon.bitmaps = [event.target.content.bitmapData];
            this.loadTrayIcon = function() {
                air.NativeApplication.nativeApplication.autoExit = true;
                var iconLoad = new air.Loader();
                if (air.NativeApplication.supportsSystemTrayIcon) {
                    iconLoad.contentLoaderInfo.addEventListener(air.Event.COMPLETE,iconLoadComplete);
                    iconLoad.load(new air.URLRequest("lmt16.png"));
        window.onload = function(){
            bgWindow = new BgWindow();
            bgWindow.init();       
    But the problem here is, sometimes the icon is loaded correctly but sometimes its not loaded.
    What am I missing here ?
    Any help is appreciated.
    I am attaching the complete application if somebody needs to analyze it.

    Sorry. Your attachment didn't come through. It triggered an error message about a "malformed container violation." Please try to rezip it and try it again.

  • Calendar.live settings icon not visible in Firefox 28.0

    The live.com settings icon in all pages except mail is not visible when using Firefox. It works fine in IE.

    Please report this to the Web Compatibility Team [https://dev.webcompat.com]
    If it was working before, please try [[Troubleshoot Firefox issues using Safe Mode]] and clearing the cache to see if the issue continues.

  • JTree - dashed lines and + and - icons not visible

    Hi,
    I implemented a TreeCellRenderer for my JTree:
    public java.awt.Component getTreeCellRendererComponent(javax.swing.JTree tree, Object value, boolean sel, boolean expanded, boolean leaf, int row, boolean hasFocus)
    Object userObject = ((DefaultMutableTreeNode)value).getUserObject();
    if (userObject instanceof Struct)
    this.setLeafIcon(this.iconStructClosed);
    this.setClosedIcon(this.iconStructClosed);
    this.setOpenIcon(this.iconStructOpen);
    else if (((DefaultMutableTreeNode)value).isRoot())
    this.setLeafIcon(iconEmptyClosed);
    this.setClosedIcon(iconEmptyClosed);
    this.setOpenIcon(iconEmptyOpen);
    /*else
    this.setLeafIcon(iconDatatypeClosed);
    this.setClosedIcon(iconDatatypeClosed);
    this.setOpenIcon(iconDatatypeOpen);
    return super.getTreeCellRendererComponent(tree, value, sel, expanded, leaf, row, hasFocus);
    ...the icons of the nodes are displayed correctly, but the dashed lines to visualize the level of a node and the + and - icons for collapsed or not collapsed nodes are not visible. I am using Windows LAF. What's wrong ?

    Please provide following information also:
    1) Are you using the default images?
    2) What is the Image URI?
    3) Snapshot of the Structure window, property inspector window?
    4) Are you using any switcher?

  • System Tray Icon Not Displaying - Depending on Launch Style

    Good Morning-
    I'm using the java.awt.SystemTray and TrayIcon classes from 1.6 to create a system tray that acts essentially as a temperature monitor. It's very little code. When I test it from Eclipse, it works great. When I double-click the .jar on my workstation, it works great. When I launch it with java -jar temp.jar, it works great. When I launch it with javaw -jar temp.jar, I get no tray icon, but javaw sits in memory doing something.
    When my users launch it with a .vbs that calls java -jar temp.jar and hides the resulting terminal window, they get no tray icon. When they call java -jar temp.jar, they get the tray icon... and the console window. When they call javaw -jar temp.jar, they get no tray icon. Any of these practices yields a java process sitting in memory.
    When my users double-click the .jar file, they're asked to chose what to open it with. If they chose Java's executable, it says it doesn't know what to do (it isn't called with -jar). Windows doesn't see their jar files as executables like on mine.
    So I have two issues. The result is the system tray icon won't display on users' computers without a window to accompany it. Any idea why? Is it potentially a bug?
    Some code:
    public class SysTrayController {
         // The actual icon that will be updated
         private TrayIcon          icon;
         // The last-set temperature
         private int                    temp;
         // The box that may or may not appear
         private AlertBox          box;
         // No Data received (yet?)
         public final static int NO_DATA = 0;
         // High temperature threshold.  TODO:  Make this user-configurable.
         private final static int     HIGH_TEMP = 80;
         // ... you guess
         private final static String DEFAULT_ICON =  "icons/default.png";
          * Initiate everything.  Grab the system tray, plop the icon in it, and
          * get the icon all set up and ready to go with the default image.
         public SysTrayController() {
              box = new AlertBox();
              SystemTray tray = SystemTray.getSystemTray();
              Image image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(DEFAULT_ICON));
              PopupMenu popup = new PopupMenu();
              MenuItem exit = new MenuItem("Exit");
              exit.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        System.exit(0);
              popup.add(exit);
              icon = new TrayIcon(image, "Temperature Monitor", popup);
              // On double-click, display the alert box
              icon.addMouseListener(new MouseAdapter() {
                   public void mouseClicked(MouseEvent e) {
                        if (e.getClickCount() >= 2) {
                             box.setVisible(true);
              try {
                   tray.add(icon);
              } catch (AWTException e) {
                   System.out.println(e);
          * Set the temperature.
          * Call setIcon() to set the icon to the right number, update the alert
          * box, and if it's time to, display the alert box.
         public void setTemp(int temp) {
              if (this.temp != temp) {
                   this.temp = temp;
                   setIcon(temp);
                   icon.setToolTip(temp + " degrees");
                   box.setAlertMessage("Temperature in the Server Room is at " + temp + " degrees!");
                   box.setIcon(icon.getImage());
                   if (temp > HIGH_TEMP) {
                        box.setVisible(true);
                        icon.displayMessage("Alert", "Temperature in the server room is at " + temp + " degrees!", TrayIcon.MessageType.WARNING);
                   } else if (temp != NO_DATA){
                        box.setVisible(false);
          * Figure out which icon to set the tray icon to, scale it down, and
          * set it.
         public void setIcon(int number) {
              Image image = null;
              if (number == NO_DATA) {
                   image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(DEFAULT_ICON));
              } else if (number >= 60 && number < 100 ) {
                   String iconString = "icons/temp";
                   iconString += number;
                   iconString += ".png";
                   try {
                        image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(iconString));
                   } catch (NullPointerException e) {
                        image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(DEFAULT_ICON));
              image = image.getScaledInstance(16, 16, Image.SCALE_SMOOTH);
              icon.setImage(image);
          * Give back the current temperature.
         public int getTemp() {
              return temp;
    }The main() that calls it looks like this:
         public static void main(String[] args) {
              SysTrayController controller = new SysTrayController();
              Thermometer temp = new Thermometer(HOSTNAME);
              while (true) {
                   controller.setTemp(temp.getTemp());
                   try {
                        if (controller.getTemp() == SysTrayController.NO_DATA) {
                             Thread.sleep(1000);
                        } else {
                             Thread.sleep(SLEEPTIME);
                   } catch (Exception e) {
                        System.out.println(e);
         }

    From the code above, this line actually worked for me:
    image = Toolkit.getDefaultToolkit().getImage(getClass().getResource(iconString));Just place the image inside the source folder and change the iconString thing...
    For example mine looked like this
    image = Toolkit.getDefaultToolkit().getImage(getClass().getResource("/icon.gif"));

  • Admin Applet icons not visible

    Hi Guys,
    I have installed UCM on server with apache as web server and java 1.5.
    UCM installed successfully..but what i found is admin applet icons are visible if i open my content server from local system but when i use server system IP and try to open UCM from remote desktop admin applet icon are not visible.
    Is this java version error. How can i resolve it?
    Thanks & Regards,
    Sunil

    Hi Sunil,
    I might sound like I'm repeating but you said you have Java 1.5 on your desktop which is fine cause you can see it from there but.. do you have 1.5 for the <u>browser you're using in the remote desktop</u>? Because this is surely a browser JRE issue.
    Go to the browser properties and look for the JRE your browser is using:
    i.e IE explorer: Internet Options->Advanced Tab-> scroll down until you find the Java option and make sure JRE 1.5 (or later) is being used.
    Let us know

  • Airplay working but icon not visible.

    I have just replaced my 2G iPod with a 5G. Although Airplay is working I cannot see the icon in 'Music', however, I can see it in Tunein radio from which I select my wireless speaker. When I return to 'Music' Airplay will work. The Airplay icon is visible on iTunes on my PC and my 2G iPod. Any suggestions?

    On the right hand side of the fast forward arrows when playing music - your question is making me think that the layout is not as my 2G iPod even though the icon appears in apps.

  • Pidgin tray icon not transparent (2.6.6)

    Hi, stock arch instalation, fully updated packages.
    (standard repo's, no testing, no any additional repo's just default ones)
    Pidgin icon not transparent in gnome panel.
    Is this gnome-panel related, or Pidgin related?
    Some other icons like Skype are transparent, but others are not
    (VLC player tray icon is not transparent, for instance)

    As said on the bugtracker:
    For those who wish to get this working before pidgin 2.7, you can build the current 2.6 from ABS with patches and it seems to be working. See jarryson's later posts in http://bbs.archlinux.org/viewtopic.php?pid=731130 . Other apps are still in need of their own fixes. It occurs with many themes, but not with some..
    Last edited by FrozenFox (2010-04-28 23:34:16)

  • Install Data Services(DS) 4.0 on IPS4.0 SP2, DS icon not visible on CMC

    Hello,
    Here is the issue we are facing:          
    1. Installed IPS 4.0 SP2 on Server #1. Installed tomcat as well on the same server.
    2. Login to CMC to verify. It looks good.
    3. Installed DS 4.0 SP1 on Server #2.
    4. Use server#3 with MS SQL Server 2008 DB for creating CMC and DS Repos.
    5. Login to DS Designer successfully.
    6. Login to CMC.
    7. You should see a Data Services icon in the CMC.  BUT the Data Services (DS) icons not available
    When you install IPS4.0 and DS4.0 on the same server, it works fine. We have done this.
    I have been told that this is a IPS4.0/DS4.0 bug and that SAP is working on it. I haven't seen a solution anywhere for this yet. Has anyone faced this issue and what did was done to resolve this?
    Any help is appreciated.
    Thanks

    Resolved it with SAP's help.
    We had to run DS 4.0 installer on the IPS (so that CMS is local) server
    and install the DS EIM APS + Management Console on the IPS box.
    I have attached the screen shot of the features to install.
    Thanks

  • Document Link Item Icon not visible at query execution

    Dear Colleagues!
    How can I acheive to have the comment-icon visible when I open a query with comments in BI Portal, as a default?
    I have set som settings for the properties of the Query in Query Designer. As it is now I have marked for Document Links, Master Data and Info Provider Data, under presentation of the query as a whole.
    Still, when I execute, I can not see any icons. But if I enter settings in the web, and mark for Document Settings for data, the icons appear.
    I do not want the customer to have to do this settings each time they ececute a query from the portal. Rather I want the Document Link Icon to be visible by default. How can I get my settings in the query designer to be counting in fromt of the settings in the template?
    Regards Silje

    I figured this one out myself. There is a setting in Web Application Designer, directly on the query in question. In properties for the query I tick of "Document Links Visible".
    Regards Silje

  • Webdynpro Table: Column Header sort icon not visible

    In design time in NWDS, my table headers have this up/down arrow icon that is visible to indicate sorting.
    At runtime it is not displayed.  How come?

    Hi KF,
    According to the Node Structure
    Employee
    |----
    name
    |----
    no
    |----
    sal
      public static void wdDoModifyView(IPrivateEmployeeView wdThis, IPrivateEmployeeView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
    if (firstTime) {
               IWDTable sortTable = (IWDTable) view.getElement("Put the table id here");
    <b>
               wdContext.currentContextElement().setEmployeeTableSorter(new TableSorter(sortTable, wdThis.wdGetSortEmployeeAction(), null,
               new String[]{"name","no","sal"})); </b>
    //Instead of column id passes the attribute name of the node that is bound with the table.
    //EmployeeTableSorter is the context attribute of type …….utils.TableSorter
      public void onActionSortEmployee(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSortFundID(ServerEvent)
         wdContext.currentContextElement().getEmployeeTableSorter().sort(wdEvent, wdContext.nodeEmployee());
        //@@end
    Table Sorter : table not getting sorted
    Regards,
    Mithu

  • Moved Masters to another Project, Icons not visible

    Greetings,
    In aperture I moved masters to another project. Looking into the new project several icons don't show (greyed) the photos.
    Anyone know how to undo or get them visible again?
    Thanks!
    Left one is visible, right one greyed-out (2 different photos). I can open the greyed-out photo though but browsing is a hassle, opening the greyd-out photos to see what it is every time.

    I can open the greyed-out photo though but browsing is a hassle, opening the greyd-out photos to see what it is every time.
    This looks like the thumbnails cannot be read. Try to recreate the thumbnails for the project:
    Select the photos, and from Aperture's main menu bar use:
         Photos > Generate Thumbnails.
    Does that bring the thumbnails back?  If not, check, if the backup of your Aperture library is current, back up, if necessary, and run the Aperture Library First Aid tools to repair the permissions, the database, and if necessary rebuild the library.
    Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual
    Regards
    Leonie

  • Apps icons not visible

    I have downloaded some apps from the store and i have synced it to the ipod touch i am not able to see the apps icons but when i search the ipod touch its there, and i am able to use the apps, how can i make the apps icons visible??

    @fpschmitt I tried taking them off of the ipod and then putting them back on in the app window of the sync session.  I have a feeling restore is the only thing that may help.  I am hoping that it isn't a software issue.  It is a ipod 3g

  • External Drive Icon not visible on Desktop OS X 10.9 Macbook Air

    Hello,
    i am unable to view my external Hard Drive icon on the desktop, rather i have to go vie system prefrences> disk utility unlock my external Drive and then the icon of ecternal drive is visible on the desktop. Earlier i was able to view the icon the moment i used to plug in my external hard drive into the system. i have also tried to change the prefrences in finder. the system was not upgraded. help would be indeed required.
    Thannk You.

    You should be able to make this appear on the desktop by checking it in Finder Preferences. Click on "File" in the top bar and go down the menu to get to Finder Prefs.

Maybe you are looking for

  • How do i setup a POP gmail account on my iphone

    Our work uses a gmail account that a company sends emails to and multiple users look at this account with there phones. We all need to be notified when an email comes, but when one person opens it all the phones sync and everyone else loses the notif

  • Error in Receiver File adapter using File content Conversion

    Hi, I am getting the following error in the receiver file adapter. Conversion initialization failed: java.lang.Exception: java.lang.Exception: Error(s) in XML conversion parameters found: Parameter 'statement.fieldFixedLengths' or 'statement.fieldSep

  • How to send photos embedded in email?  It worked well on version 7.

    I was able to imbed photos in an email easily on version 7.  Version 11 does not allow me to do that without cutting and pasting each individual photo individually, one after another.  What am I doing wrong? Thanks, Tom

  • Fuzzy/shimmery streaks - 'pixellating': why?

    Is this more likely a software or hardware issue? Intermittently I get streaks, or patches, of 'pixellated' areas. That is, streaks that are blurry because there are vertical lines that look like crude pixel areas (as if some pixels had dropped out).

  • Link External PDF file to Portal reports

    Created a javascript function to dynamically build a url to call a pdf file from a form by a link, however there is not an ounce of information to do the same from a QBE report. Please steer me in the right direction, of if you have an idea -- please