After upgrade conky does not display right on first boot

After i upgraded my arch conky will display on top of all windows when i first boot the machine, until i kill it and restart it then it works perfectly. I am using openbox with no compositing.

conky reports the same thing as all previous versions, playing with the config did not help and no note of any config changes on conky's website. yes downgrading to conky-1.8.1-1 works for now but world like to fix this as it does not seem to affect my other computer with almost the same hardware and setup.

Similar Messages

  • When I open Firefox (after upgrade) it does not show right side vertical scroller bar. I have to take the mouse and physically expand the browser to get the scroller bar to show. (never had this problem in previoius versions of firefox)

    Firefox 4.0 on Mac OS 10.6.7 When I open Firefox it does not show the right vertical scroller. I have to take my mouse to the lower right corner and drag it open slightly and the scoller appears It will stay active through other tabs now until I close or shut down firefox. Once I reopen the same thing again no vertical scroller bar.

    Yes AT&T is my ISP. I use DSL. Currently I am not at my home address. I am currently on a cable modem on COX.com.
    I am also receiving a warning message "WARNING: Parental control appears compromised!".

  • Content does not display when page first opened

    Hi All;
    I have a contenta are/region which I have divided into multiple tabbed areas. I have two main tabs that divide the content into two major topics. Within each of these main areas I have added 4 to five tabs. One set for example holds a calendar, another tab a news release area and a third a content area for holding multiple folders of a department's documentation. The problem I am encountering is that when I first bring up the page all I see are the tabs and no matter what tab area is exposed the content within it is not displayed. For example, I start with the Calendar tab active (the calendar does not display). I then click on to say the document area, which displays all of its content's correctly. When I return to the calendar tab the calendar is displayed. My question... how can I ensure that the calendar (or any other tabbed area's content is displayed when the user first brings up the page?
    PS. This is a hot topic since I will be demoing my pages to my managers next week in an effort to convince them that Oracle Portal is the way to go.

    When I email the page to our server, the href links are missing.
    You email the page to the server?  What does that mean?
    MaureenHayslett wrote:
    I am using CS3 on Mac OS 10.6. The page previews perfectly in Safari. When I email the page to our server, the href links are missing. For example, the banner doesn't use the correct font, and the background color the the whole page is missing. Please go to http://www.crhcarchives.org/links.html
    All of the other pages on the website look correct. Thank you.
    Look at the source on that page.  There is virtually no styling on it....
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
    <style type="text/css">
    <!--
    .style16
         {font-size:14px}
    -->
    </style>
    </head>
    There is nothing telling the page which fonts to use, or which colors to use.  Are you sure you have uploaded the correct page?

  • Windows Phone 8.1 xaml, c# ComboBox does not display selection when first item is selected from full page list.

    I have 3 comboboxes on a xaml page and most of the time when I select the first item on the full page list displayed when the number of items are > 5, the screen returns to the combobox and the box is blank. The combobox.SelectedItem is valued but it
    does not display.  This does not happen every time and I have seen this using the emulator and my windows 8.1 phone.  If I select any other item in the list they always display but when I go back and select the first item the box is blank. 
    Does anyone know what I could be doing that is causing this?

    Thanks for your help.  When I run the code below and the page is displayed, I select an item from the page list and it displays fine and then I select the first item from the page list and I do not see that selected item in the box. 
    If I remove the SelectedIndex=0 it all works fine except I do not have an item selected for the initial display.  Below should show problem and should work copy/paste in universal blank app.
    ScrollViewer x:Name="scrollViewer1">
            <StackPanel x:Name="stackPanel1" Background="Transparent">
                <ComboBox x:Name="comboBoxTestTypes" Margin="20,117.75,0,465.25" SelectedValuePath="ItemDescription" Width="310" Height="Auto" FontSize="17"
           ItemsSource="{Binding}" HorizontalAlignment="Left" VerticalAlignment="Center">
                <ComboBox.ItemTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding ItemDescription}" />
                    </DataTemplate>
                </ComboBox.ItemTemplate>
            </ComboBox>
     </StackPanel>
        </ScrollViewer>
    public sealed partial class MainPage : Page
            public ObservableCollection<ItemDetail> itemDetail;
            public MainPage()
                this.InitializeComponent();
                this.NavigationCacheMode = NavigationCacheMode.Required;
                this.itemDetail = new ObservableCollection<ItemDetail>();
            protected override void OnNavigatedTo(NavigationEventArgs e)
                PageLoad();
            public class ItemDetail
                public string ItemDescription { get; set; }
                public string ItemName { get; set; }
            private async void PageLoad()
                await initializeTypes();
                var comboBoxTestTypesItemsSource = await GetTestTypes();
                comboBoxTestTypes.ItemsSource = comboBoxTestTypesItemsSource;
                comboBoxTestTypes.SelectedIndex = 0;
            private async Task initializeTypes()
                await addTestType("Item1");
                await addTestType("Item2");
                await addTestType("Item3");
                await addTestType("Item4");
                await addTestType("Item5");
                await addTestType("Item6");
            private async Task<ObservableCollection<ItemDetail>> GetTestTypes()
                //ObservableCollection<ItemDetail> list = new ObservableCollection<ItemDetail>();
                //Random rnd = new Random();
                //for (int i = 0; i < 50; i++)
                //    list.Add(new ItemDetail() { ItemDescription = "hello" + rnd.Next(0, 1001), ItemName = rnd.Next(0, 101).ToString() });
                await getSaveDataFileDataAsync("get");
                return itemDetail;
            private async Task addTestType(string description)
                int newIdAdd = 0;
                if (itemDetail != null && itemDetail.Count > 0)
                    newIdAdd = itemDetail.Max(mT => Convert.ToInt32(mT.ItemName)) + 1;
                var addTestType = new ItemDetail();
                addTestType.ItemName = newIdAdd.ToString();
                addTestType.ItemDescription = description;
                itemDetail.Add(addTestType);
                await getSaveDataFileDataAsync("save");
            private async Task getSaveDataFileDataAsync(string getSave)
                try
                    DataContractJsonSerializer jsonSerializer1 = null;
                    string dataFileName1 = "testFileName";
                    jsonSerializer1 = new DataContractJsonSerializer(typeof(ObservableCollection<ItemDetail>));
                    if (jsonSerializer1 != null && getSave == "get")
                        using (var stream1 = await ApplicationData.Current.LocalFolder.OpenStreamForReadAsync(dataFileName1))
                            itemDetail = (ObservableCollection<ItemDetail>)jsonSerializer1.ReadObject(stream1);
                    if (jsonSerializer1 != null && getSave == "save")
                        using (var stream1 = await ApplicationData.Current.LocalFolder.OpenStreamForWriteAsync(dataFileName1, CreationCollisionOption.ReplaceExisting))
                                jsonSerializer1.WriteObject(stream1, itemDetail);
                catch

  • After upgrade firefox does not ask for restart

    On Linux Mint when Firefox is opened and meanwhile operating system package manager upgrades Firefox, then FF does not notify me that it needs restart.
    I notice it since some extension stops working. Later I have checked package manager logs and see, that FF had been updated. Wasn't in older versions so that FF notified me that restart is needed for firefox?
    Is it a bug or I have some setting missing. I need notification window be visible as long as user closes it or firefox is restarted...

    Looks like that yea. I found out that for Ubuntu there is xul-ext-ubufox package which should do almost needed thing. I will install it into mint.
    Integrates the browser with Ubuntu to:
    * Enable searching for missing plugins from Ubuntu software catalog
    * Add the following options to the Help menu - Get help on-line - Help
    translating Firefox - Ubuntu Release Notes
    * Set homepage to Ubuntu Start Page
    * Display a restart notification after upgrading Firefox
    * Add ask.com to the search engines.

  • Personal certificate says sucessfully restored after import, but does not display on list of certificates.

    I am having the same problem as in this ticket, but the solution doesnt work for me:<br />
    https://support.mozilla.org/questions/947476
    Firefox -> Prefrences -> Advanced -> Certificates -> View certificates -> import Select the cert, enter password, then i get this message: <br />
    Successfully restored your security certificate(s) and private key(s). However the cert does not show up on my cert list, and i cannot access the site that requires this cert.
    I am using Mac OSX 10.6.8 and Firefox 29. I do know that the certificate itself works because i can use it on another machine. I tried deleting both CERT8.db and SECMOD.db with no success.
    I hope someone knows how to fix this because i need to file my taxes!!!!
    Thanks in advance

    We could actually use help on this issue as well:
    [Bug 995801 - EV identifier is no longer displayed in Location Bar/Arrow Panel after a restart of Firefox]
    I do not recommend this but if you cannot import your cert in time for taxes [[Install an older version of Firefox]]

  • Using openModal, does not display properly on first instance.

    After having a good play with openModal, as per package app Bug Tracker p31, I came across an issue this morning after logging into the runtime app.
    In a fresh apex session, the first open only greyed the canvas, didn't display the modal. I can click anywhere to hide the modal behaviour - but the modal will only work properly and display the canvas with "Modal region" template after refreshing the page. Repeatable after logout.
    This does not happen in the bugtracker application.
    The issue appears in Firefox, Chrome and IE8 - but no console errors are present.
    Application Express 4.2.1.00.08, theme 25
    I'll see if I can replicate it on apex.oracle.com
    Scott

    scott.wesley (grassroots-oracle.com) wrote:
    BlueShadow - would you please advise how that breaches the terms of use? I've had another read through and I'm not sure how this is interpreted.
    What if ones own blog had the relevant answer to a question?Hi Scott,
    The blog in question was newly created with all it's "How to" posts having been created within the past 24 hours. This member has then made numerous posts on the forums, in quick succession, many of which are to non-current threads, and all of which are not providing any answer, except to simply direct people to 1 or more of the posts on his new blog. Whether he's creating the posts on his blog in answer to the questions being asked on the forum or has already created the blog posts and is searching out questions that relate to them is not known. What is known is that this breaches the Terms of Use, as the forum is clearly being used as a mechanism to simply direct people to his own blog rather than it's intended use, and also the forum admin have indicated to the moderating team that linking to blogs in this way is not acceptable.
    I hope that answers your question.

  • Why the form does not display these info first...?????

    Hi ,
    In a when-new-form-instance trigger i have the following code:
    DECLARE
    W  WINDOW;
    AL NUMBER;
    BEGIN     
    :BLK_TEMPLATE_ITEMS.global_app_user_code:=:global.app_user_code;
    :BLK_TEMPLATE_ITEMS.global_role:=:global.role_onomasia;
    :BLK_TEMPLATE_ITEMS.global_username:=:global.username;
    W:=FIND_WINDOW('WINDOW1');
    SET_WINDOW_PROPERTY(W,TITLE,'TITLE');
    Read_image_file('images\Shma_Perif.gif','gif','blk_template_items.logo_forea');
    AL:=SHOW_ALERT('ALERT_INFO');
    IF AL=ALERT_BUTTON1
           THEN
       .......In the above code .... the form data values and the image are not displayed beforehand the user presses one of the button of the alert... as expected.....
    How can i impose the system to display the contents in the "BLK_TEMPLATE_ITEMS" block , the image and then the alert....????
    I tried the PAUSE built-in procedure... it works as i want... but it displays another message("Please confirm") before the alert.....
    Thanks ,
    Simon

    Did synchronize solve your issue?
    Like to know it too ;-)
    And if you put EXECUTE_QUERY just before your call to the alert?
    Erwin

  • PROMPT WITH DEFAULT VALUES DOES NOT DISPLAY VALUES THE FIRST TIME

    Hi,
    With one of our scorecard reports, when you select a division, the leader role/leader prompt picklist values do not get populated the first time. Because this is only happening in reports we have written in house, we do not see this happening to the reports that are installed as default.
    Is there any workaround known for this error.
    Thanks and Regards

    Hey can somebody please let me know how to go about this isssue ..
    Thanks

  • Safari on iPad does not display GIF image anymore after upgrade to iOS 4.3

    1) Could anybody (especially those in Apple iOS or Safari teams) advise me why the Safari on my iPad cannot display some images (probably in GIF formats) on some webpages anymore, after I upgrade my iPad to iOS 4.3? These images on the webpages can be properly displayed on when my IPad runs with iOS 4.2.1. There should be no problem with these embedded image files because they can still be properly display in Safari running on my Macbook air.
    2) Is there any solution to this problem?
    3) Is it possible to downgrade my iPad back to iOS 4.2.1?

    I am having the same issue with two different ipads (one Wifi and one Wifi-3g) running on our home network (Verizon FIOS). The website in question is www.tvwc.com and the main logo in the upper left corner, a .gif, does not display, only a "?". Other images on the site, in .jpg format, display correctly.
    I was running 4.2.1 and am now just upgrading to 4.3.

  • After Mozilla upgraded (5 I think) my igoogle homepage does not display when I sign in.

    I upgraded to Mozilla 5, (I think, as there does not seem to be any previous versions when I check), now my personalized igoogle homepage does not display when I sign in. I need to go to options then select igoogle. All was well before. How do I reset without having to completely redo my igoogle page. I do not believe I have the 6.0 version as that is what it says I can upgrade to. I am retired and am only learning.

    Unless you have a version of iPhoto that was 9.0 or later you will not be able to download iPhoto 9.6.1 from the App Store.  To get 9.6.1 you'll need to purchase a copy of the iLife 11 disk from an online retailer like Amazon.com and then go the App Store and download 9.6.1.  Those who had an iPhoto 9.0 or later already installed have been able to get 9.6.1.  But there's been no reports from anyone who bought iLife 11 and went that route so you're at your own risk. 

  • The Yahoo sign-seal does not display in my newly upgraded firefox even after resettign it in yahoo. It works until I restart firefox

    When I log into Yahoo I'm supposed to get a "sign-in seal" to verify the location is real. Since the upgrade firefox does not show the image. I reset it in yahoo and log out and log in and the seal is there but if I close firefox and then restart it the seal is gone. If I use IE8 the seal is still there. What needs reset in firefox to keep this security feature working?
    == This happened ==
    Every time Firefox opened
    == Firfox updated itself to the latest version.

    That is a know problem caused by specifying the text color as transparent in the stylesheet.<br />
    Removing that color rule or specifying a color like black (#000) should fix it.
    <pre><nowiki>TABLE{
    table-border-color-light:#336666;
    table-border-color-dark:#003333;
    border-color:#003333;
    color:transparent;
    </nowiki></pre>

  • Upgraded to 2.0.2 and Safari does not display iphone webpages

    Hi All,
    are you having the same problem? After upgrading to 2.0.2 Safari does not display for iphone formatted webpages in the right format anymore! Any idea what to do to overcome this situation (besides waiting for the next update?)
    Best Regards
    Christoph

    I am not seeing the problem at all.
    All the iPhone specific web pages I have tried work fine.
    Try a reset.

  • Yosemite - MacBook Air 10.10 - "Notes" does not open - "Preview" opens, but does not display PDF's - "iCal" works in new strange ways, as if no one checked its operation - Everything worked very well until Upgrade to Yosemite ! - Happen to others?

    Yosemite - MacBook Air 10.10 - "Notes" does not open - "Preview" opens, but does not display PDF's - "iCal" works in new strange ways, as if no one checked its operation - Everything worked very well until Upgrade to Yosemite ! - Happen to others?

    Thanks for your lengthy reminder dude, I have a similar Mac with yours. I suspect its a software fault because it happens after I upgraded to Lion, 10.7.2.

  • I have yahoo mail, since your newest upgrade, when I open an email with a picture in it. The picture does not display

    I have windows7/8 and use att.yahoo mail. when I receive an email with a picture in the body, the picture does not display, this started happening after fire fox latest upgrade

    If images are missing then check that you do not block images from some domains.
    *Tap the Alt key or press F10 to show the Menu bar.
    Check the permissions for the domain in the currently selected tab in "Tools > Page Info > Permissions"
    Check "Tools > Page Info > Media" for blocked images
    *Select the first image link and use the cursor Down key to scroll through the list.
    *If an image in the list is grayed and "<i>Block Images from...</i>" has a checkmark then remove this checkmark to unblock images from this domain.
    Make sure that you do not block (third-party) images, the <b>permissions.default.image</b> pref on the <b>about:config</b> page should be 1.
    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    There are extensions like Adblock Plus (Firefox/Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images and other content.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *http://kb.mozillazine.org/Websites_look_wrong

Maybe you are looking for