Menu tray icon won't stick

Hello,
I keep dragging the app icon from Applications onto my menu bar so that I can just click on it, but it will stick there for some reasons. Anyone know why not?
Thanks,
David

Ok, next questions :
1. You ARE dragging it to the left hand side of the Dock (the divide line) not the right?
2. Try one of your other user accounts (or create one if necessary) to see how it behaves there. The iTunes icon is in the Dock by default in a new account - so try removing it from the Dock, then adding it again from Applications. If it sticks, log out, then log back in, see if it is still there. If it is, it is something to do with your user account, so report back what happens. Thanks.

Similar Messages

  • "Show Script menu in menu bar" setting won't stick

    Hi all,
    I'm starting some Applescript development, and I'd like to make some scripts available in the Scripts menu. I checked the box to "Show Script menu in menu bar" from within the prefs for AppleScript Editor, but it doesn't work. When I close AppleScript Editor, relaunch it, and look at the prefs again, the box is unchecked. I deleted the relevant preference files from my Library and recreated them by launching AppleScript Editor, but the setting just won't stick.
    Any ideas?
    -Tim

    Taylor,
    The preference that I'm looking at is within AppleScript Editor, the program I use to write new AppleScripts. Script Editor was the previous name of the same application. When I check the "Show Script menu in menu bar" in the AppleScript Editor prefs and close with window. The box is unchecked the next time I open the AppleScript Editor application, and the Script menu never appears in my menu bar. Everything works fine on my iMac at home. The problem seems to be isolated to my MBP. Weird.
    -Tim

  • Menu bar icons won't display

    After upgrading to Mavericks, I can't see any of the usual menu bar icons (date/time, battery, wifi, etc.).
    When I check them in System Preferences, it momentarily checks and then unchecks.
    Any suggestions? Tried restarting already.

    Go to your Finder "Go" menu hold the option key to choose "Library". Then go to Preferences/com.apple.systemuiserver.plist and delete that file. Log out and back in or restart.

  • Kopete + openbox + tint2, system tray icon won't spin problem.

    Hello there guys.
    I'm having a problem with kopete's icon in system tray. When I recieve incoming message the icon should spin around (works in kde) but in openbox+tint2 won't and I have no idea why not. This wouldn't be a problem if I'd use any other kind of notification than Mark taskbar entry, but I don't. Is there any specific setting in tint2 to allow icons move?

    What system notification program are you using? If you don't have one, that could be the issue because the system tray is just a trayer replacement, not a notification window. Either xfce4-notifyd or something. If you really want the dependencies you can get kdeplasma-addons-applets-incomingmsg.
    xfce4-notifyd is much less resource-hungry

  • Safari 6 (Lion) bookmark icons won't stick

    I am still using Lion but I upgraded to Safari 6. If a web page has a pic next to it's URL, that pic goes with the bookmark. After upgrading, all my bookmarks have the blue ball before the each bookmark. If I click on a bookmark with a pic, it shows. However, after closing Safari and reopening, those pics are not sticking, hence back to the default blue ball showing.
    What gives? A new unknown Apple setting? Glitch?
    Any help with be appreciated.
    Wow, I just figured it out thinking outloud to myself while studying the icons showing. Everytime history gets erased, so do the bookmark icons. Really Apple?
    Any way to get them to stick besides keeping history forever?

    Rats!  I just noticed the same thing.
    Hey, Apple:  This is a bug.  Erasure of the history should not erase icons associated with a site.

  • Bluetooth Menu Bar Icon Won't Go Away

    Since installing 10.5.2 on my PowerMac QuickSilver DP 1 GHz, the Bluetooth icon appeared in the menu bar—even though I don't have Bluetooth capabilities on that computer—and I can't turn it off.
    The Network preference panel for Bluetooth in System Preference has a "Show modem status in menu bar" instead of "Show BlueTooth status in menu bar" so there doesn't appear to be any way to turn it off.
    Anyone else having this problem? Any way to fix?
    Message was edited by: Will Mardis

    I am not sure which preference file it is, but it is probably corrupt and needs to be trashed.
    Perhaps someone here knows the exact file to remove.

  • 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"));

  • Hard Drive icon won't open and menu bar flashes off and on

    All of a sudden, in the middle of the day, my eMac went haywire. I can launch apps and docs are one the desktop. But I cannot open the Hard Drive icon. If I double-click on it (or used Command-O from keyboard), the icon won't open. And when I attempt to open it, the Finder Menu Bar begins flashing off and on (vanishing, reappearing, vanishing) across the top of the screen. I haver rebooted, run disk utility to repair permissions, even booted from TechTools to run its diagnostics. But still no access to the Hard Drive icon. I logged out and logged in as a TEST user, and same thing happens even when logged in that way. Literally, this happened in an instant. One minute the eMac was fine, then this started. Anyone else seen this? -- david

    If the problem exists in both your regular account and your Test account odds are that it is at the system level. You can try a Safe boot (hold down the shift key at startup) to see if there is a third party startup item or one of the optional Apple functions that is causing the problem. You could also boot from the installer disk and use the Disk Utility->Repair Disk function. If you have a utility such as Tiger Cache Cleaner which will do a deep cache clean you can also try that.
    Francine
    Schwieder

  • [SOLVED] Spacing between start menu and tray icons lost

    Hi,
    I am using KDEmod + Arch
    After todays upgrade, spacing between start menu at the left and tray icons at the right lost making the tray icons align to the left side of the tray. An X mark in a red box appeared in between on mouse hover, shows the message that : Unable to load the widget, could not find the requested component: stasks.
    A screen shot is here:
    http://twitpic.com/od3jh
    What is to be done to rectify it?
    Last edited by absolutevoid (2009-11-05 18:31:36)

    Long:
    You're using the stasks plasma widget, which likely just needs to be recompiled for kde 4.3.3, as it was just upgraded from 4.3.2 in Arch's Extra repository and I imagine the same applies to KDEMod.
    pacman -Q | grep stask    will likely show you what the stasks plasma widget is called.
    If it's a kdemod package or returns nothing (meaning stasks is in some other plasma applet package, perhaps kdemod-plasma-applets or something.. pacman -Q | grep plasm would show all such packages with 'plasma' in the name), you'll need to recompile it with ABS or just post on the KDEMod forum and wait for them to update it. If you haven't rebooted since upgrading, there's sometimes something out of my ability to explain which causes KDE stuff not to show up / work properly even after running 'kbuildsycoca4' or 'kbuildsycoca' or killing and restarting kdm until said reboot.
    The two stasks plasmoids I see in the arch user repository are "stasks-manager-plasmoid" (which you're likely using) and "plasma-stasks-patched-plasmoid-hg". If pacman -Q | grep stask shows one of those, simply recompile it via yaourt -S name_of_the_widget, and you should be good to go on logout/in or reboot or what have you.
    Short:
    Run in konsole: pacman -Q | grep stask
    If it shows something with "kdemod" in the name or returns nothing, you should probably post a bug report with the KDEMod/Chakra guys at chakra-project.org (bug tracker is currently down, use the forums). If it shows "stasks-manager-plasmoid" or "plasma-stasks-patched-plasmoid-hg", recompile it via yaourt -S name_of_the_package and log out/in (or reboot if necessary.. it shouldn't be though).
    Last edited by FrozenFox (2009-11-05 15:50:32)

  • Macbook hangs on blue screen with menu icons, won't start

    I am having an issue with my MacBook (2010), which won't fully start up anymore. It gets past the initial grey loading screen and starts loading a few of the menu bar icons in the upper right corner. Then it stops with only a few of those icons loaded, a blue screen, and no desktop icons.
    The MacBook is running 10.6 (if I remember correctly, it's 10.6.8, but I'm not 100% sure).
    Things I've tried already:
    - Safe boot (doesn't work, no indication that it recognizes me trying to start it in safe mode)
    - Resetting the PRAM
    - Leaving it on for a long time to see if it will eventually start
    I lost the OS disc a while ago, so unfortunately I can't boot from that. Any other suggestions would be welcome.

    You might want to consider running the combo updater over your install to refresh your files.
    Combo updater: Mac OS X 10.6.8 Update v.1.1 - 1.09 GB
    http://support.apple.com/kb/DL1399
    MORE INFO ON WHY RUNNING COMBO FIXES ISSUES
    Apple updates available from the Software Update application are incremental updates. Delta updates are also incremental updates and are available from Apple Downloads (software updates are generally smaller than delta updates). The Combo updates contain all incremental updates and will update files that could have become corrupted.
    Combo updaters will install on the same version as they're applying--no need to roll back or do a clean install. So if you think you've got a borked 10.6.8 install from a regular update, just run the 10.6.8 Combo Updater on that system.
    "Delta" updaters can only take you from one version to the next. For example: 10.6.7 to 10.6.8. If somehow the 10.6.8 is missing something it should have, and that something isn't changed between 10.6.7 and 10.6.8 it will still be stale after the delta update.

  • Tray icon menu and icons

    * Is it possible to put an icon in the MenuItem of the PopupMenu in the SystemTray ?
    * Is it possible to change the PopupMenu of the SystemTray to JPopupMenu ?

    i do not think you can unless you use some native coee. The tray icons are something of the Operating System. I never tried it to say the truth. Maybe if you search on google you will have other results.
    Good Luck
    Sim085

  • Setting default Office apps won't stick

    I'm trying to make MS Office X the default for my appilcations, but it keeps reverting to MS Office 2004. (I'm running 10.8.6 on a Mac Pro.)
    I've had "2004" on my drive for many years and "X" for 2-3 years. I've pretty much continued to use 2004 because it's working okay and I haven't had time for something to go wrong. Now I'm trying to make X the default for Word and Excel (I never use Power Point, and I don't want to mess with Entourage right now), but I can't get it to "stick."
    I tried all the usual things, and then started digging around. I realized that my System Preferences showed a plugin called "RCDefaultAPP" that I must have installed at some point. I did a search ofmy drive but couldn't find anything by that name. At this site: http://www.rubicode.com/Software/RCDefaultApp/ I found this about removing the plugin: "Drag RCDefaultApp.prefPane to the trash. Any changed LaunchServices settings remain changed, though "disabled" settings will no longer be disabled." I understand the first sentence, but I have no idea what the second sentence means. So I trashed the icon from my Preferencs Pane, ran "Repair Disk Permissions" just to play it safe, and rebooted. I'm still not getting any further.
    I begin by quitting any version of Word that's open. When I open the "Get Info" windwo from a Word document (or right click on a document and choose "Open With"), it shows the icon for 2004 and says "Microsoft Word (default) (090513)." Under that, as always, it says "Use this application to open all documents like this one." From there I choose "Microsoft Word (10.0.0)" and it shows the new icon. If I close the window and launch the document, it launches "X" as expected. However, if I open another document--whether or not "X" is already open--it launches "2004." I can do this manually with any document and that document will launch "X."
    So, I go back into the "Get info" window and choose "Microsoft Word (10.0.0)" again. This time, however, I click the "Change All" button. As soon as I do this, the icon reverts from "X" to "2004." It just won't stick. The same is true of Excel.
    I haven't messed with any other documents or apps because I'm afraid I'll just mess something up. I've looked up "discussions" in both the Apple community and MS community....I've Googled. I don't see any other discussions about this other than the steps I've just described. I don't know what else to try.
    Thoughts? Help?

    Launch Services can get "temperamental" at times.  For a case like you describe, if it insists of defaulting to app A when you want app B, compress app A (say as a zip file).  This basically tells Launch Services "screw you - now try to find A".
    So compress your Word 2004 app.  The tell LS to use the newer Word.  Even if it doesn't stick I think LS wil find the newer Word since none other can be found for word documents.
    To compress a file, right (control) click on the file in the finder to being up its contextual menu and select Compress.  A .zip file will be created.  You can then trash the uncompressed original.  But before you empty the trash double click the zip to recreate the expanded file and run it just to make sure the zip file was valid (this is a paranoid step).  If it launches ok trash the expanded file and now you can empty the trash.

  • Menu toolbar icons not displayed in colour when deployed on the Web

    Hello!
    We are developing an application using Forms6i on Windows NT.
    Our problem is that menu toolbar icons are not displayed in colour when the application is deployed on the Web using lookAndFeel = generic. This is the case both when using Microsoft IE5 and Netscape 4.5. When lookAndFeel = oracle, however, the icons are displayed in colour.
    The icons are stored as *.gif files in the same directory as the application *.html file. It does not help to create a virtual path /web_icons/ in the www listener and edit the parameter default.icons.iconpath in the file Registry.dat.
    When running the application as client/server, the menu toolbar icons are displayed in colour as expected.
    Any ideas on how to solve this problem?
    Regards,
    Kjell Pedersen
    Nera SatCom AS
    Norway
    null

    Hi,
    I got the same problem and I didn't figure out, how to solve this problem.
    But did you try to printout the form anyway? I guess you will see the icons on the printout, won't you?
    Regards
    Dirk

  • How do I disable the tray icon for firefox (version 5)

    I want to get rid of the tray icon for firefox 5.

    I should also add this info for all to see clear as part of my question (can be seen in More system details too):
    I liked that version, was the first ever FireFox browser I tried and because of it made it my number 1 browser. There have been a heck of a lot from 3.6 to 18 though I think we’d all agree. Progress can and often is messy, but worth it.
    Which is fine except mine, a different version, up-to-date plugins – and I’ve still same problem as these guys. It’s exactly the same even for me who has updated: How do we get rid of the Plugin Check Screen every time we start FireFox? I know I am up-to-date – as it tells me every single time!
    I agree everyone should be up-to-date with the software and this may very well be the case that solves a lot of people with lower versions – yet I can say I updated from version 12 to the latest 18, spent the time getting half a dozen different updates as it wanted (all of which are supported according to the link you provided) plugins and yet I am still having the same problem as users with 3.6 and older plugins! Went back to version 12.0 and I am getting the problem since installing version 18.
    Therefore from the fact I’m still getting the popup every time telling me everything is updated and safe, which is lovely to know, still doesn’t change the fact it won’t go away! Not a major problem but it is getting tedious now every single time.
    Like I say I am willing to wait and see if this gets fixed anyway which to be fair, FireFox seem to do a lot better than the competition. If it doesn’t though I’d still rather go back to an older version just to be rid of it! But not even that is now working to be gone of it! It’s gotten that ridiculous for me now too!
    :)

  • [SOLVED] on last reboot, two wicd-clients running + two tray icons?

    Hi,
    I've been using wicd forever and for the first time, I had two tray icons showing this morning. I used to use xfce but switched to openbox about a month ago and have been using an autostart.sh like so:
    $ cat .config/openbox/autostart.sh |tail
    #bg
    eval `cat ~/.fehbg` &
    #post-start operations
    (tint2) &
    (conky -c /etc/conky/conky.conf) &
    (conky -c /etc/conky/conky-top.conf) &
    (wicd-client) &
    This has been working fine, at least as far as I knew. Suddenly this morning when I started up X, I had two wireless icons in my tray. I found that two wicd-clients were running:
    $ ps ax |grep wicd
    3492 ? S 0:00 /usr/bin/python2 -O /usr/share/wicd/daemon/wicd-daemon.py
    3500 ? S 0:00 /usr/bin/python2 -O /usr/share/wicd/daemon/monitor.py
    3573 tty1 S 0:00 /usr/bin/python2 -O /usr/share/wicd/gtk/wicd-client.py
    3578 tty1 S 0:00 /usr/bin/python2 -O /usr/share/wicd/gtk/wicd-client.py
    3641 ? Ss 0:00 wpa_supplicant -B -i wlan0 -c /var/lib/wicd/configurations/001b5311e850 -D wext
    This has never happened and I'm not sure why it would start all of the sudden like this. If I remove it from ~/.config/openbox/autostart.sh, I only get one wicd-client. If I put it back, I get two. But I never used to get two even when it was in autostart.sh before (like as of any time before this morning), which is why this is so puzzling.
    I thought it might have been an upgrade, but I just reinstalled Arch completely on Saturday to do encryption and pacman.log shows that this is the only version of wicd that's been installed.
    I wondered if having wicd in /etc/rc.conf daemons was enough to start the client upon startx, but the Arch wiki on wicd implies that you should have wicd-client in autostart.sh or equivalent.
    Can anyone assist in diagnosing the problem? I guess I'd be looking for:
    1) validation that wicd in DAEMONS of /etc/rc.conf is sufficient to start the client
    2) some way to find out where both wicd-clients are being started from (if that's even possible); for example, autostart.sh-started apps might potentially be tied to my username, whereas if something's being started from the system side, perhaps the process is owned by root and we could reveal that somehow
    3) any other suggestions or comments
    Thanks.
    Last edited by jwhendy (2011-03-10 03:00:56)

    @skunktrader: Whoops... but won't that be redundant? I already know where one instance was coming from: autostart.sh. I want to know why the other one is starting, since no one seemed to think that wicd automatically launched wicd-client. Anyway, several reboots later, here's the full scoop:
    | wicd in /etc/rc.conf deamons: no
    | wicd-client in ~/.config/openbox/autostart.sh: no
    `---
    Note: In previous reboots, I get asked by gksu to allow wicd to access my network cards. This past time, I got a message from gksu saying that wicd had been granted access to my network cards.
    | before starting openbox (nothing):
    `---
    $ ps ax -o user,pid,ppid,command |grep wicd
    | after starting openbox:
    `---
    $ ps ax -o user,pid,ppid,command |grep wicd
    jwhendy 3569 1 /usr/bin/python2 -O /usr/share/wicd/gtk/wicd-client.py
    root 3617 1 /usr/bin/python2 -O /usr/share/wicd/daemon/wicd-daemon.py
    root 3619 3617 /usr/bin/python2 -O /usr/share/wicd/daemon/monitor.py
    root 3669 1 wpa_supplicant -B -i wlan0 -c /var/lib/wicd/configurations/001b5311e850 -D wext
    =====================
    | wicd in /etc/rc.conf deamons: yes
    | wicd-client in ~/.config/openbox/autostart.sh: no
    `---
    | before starting openbox:
    `---
    $ ps ax -o user,pid,ppid,command|grep wicd
    root 3445 1 /usr/bin/python2 -O /usr/share/wicd/daemon/wicd-daemon.py
    root 3447 3445 /usr/bin/python2 -O /usr/share/wicd/daemon/monitor.py
    root 3566 1 wpa_supplicant -B -i wlan0 -c /var/lib/wicd/configurations/001b5311e850 -D wext
    | after starting openbox:
    `---
    $ ps ax -o user,pid,ppid,command|grep wicd
    root 3445 1 /usr/bin/python2 -O /usr/share/wicd/daemon/wicd-daemon.py
    root 3447 3445 /usr/bin/python2 -O /usr/share/wicd/daemon/monitor.py
    root 3566 1 wpa_supplicant -B -i wlan0 -c /var/lib/wicd/configurations/001b5311e850 -D wext
    jwhendy 3666 1 /usr/bin/python2 -O /usr/share/wicd/gtk/wicd-client.py
    =====================
    | wicd in /etc/rc.conf deamons: yes
    | wicd-client in ~/.config/openbox/autostart.sh: yes
    `---
    | before starting openbox:
    `---
    $ ps ax -o user,pid,ppid,command|grep wicd
    root 3420 1 /usr/bin/python2 -O /usr/share/wicd/daemon/wicd-daemon.py
    root 3422 3420 /usr/bin/python2 -O /usr/share/wicd/daemon/monitor.py
    root 3543 1 wpa_supplicant -B -i wlan0 -c /var/lib/wicd/configurations/001b5311e850 -D wext
    | after starting openbox:
    `---
    $ ps ax -o user,pid,ppid,command|grep wicd
    root 3420 1 /usr/bin/python2 -O /usr/share/wicd/daemon/wicd-daemon.py
    root 3422 3420 /usr/bin/python2 -O /usr/share/wicd/daemon/monitor.py
    root 3543 1 wpa_supplicant -B -i wlan0 -c /var/lib/wicd/configurations/001b5311e850 -D wext
    jwhendy 3657 1 /usr/bin/python2 -O /usr/share/wicd/gtk/wicd-client.py
    jwhendy 3662 3641 /usr/bin/python2 -O /usr/share/wicd/gtk/wicd-client.py
    =====================
    So, this is why I said that the test is a bit redundant. The real question still remains: why with no wicd in rc.conf and it commented in autostart.sh is wicd related stuff starting at all? I already know one instance is definitely occurring from autostart.sh, because when I commented it out, I only had one left. But if autostart.sh is supposed to be mandatory, where is the other one coming from? More so... without it in the daemons line, the behavior with gksu indicates that something, somewhere is trying to get wicd up and running. That is what I really don't get at all.

Maybe you are looking for

  • ICal lost end dates and ∞ sync conflicts after iOS4 upgrade

       After upgrading my sacrificial iPod 3 (I'm waiting to upgrade my main iPhone 3GS) and synchronizing it to my home MacBook Pro 2007 17", I got huge numbers of old repeating meeting which seem to have lost their end-date, e.g., "Palm-size PC Porting

  • A New Macbook pro with a Dell ST2310 23in. Full HD Monitor

    I have a new macbook pro hooked up to a dell Full HD monitor using mini display port to VGA connection. And the fonts on are not that crisp. They are a little jagged. The res is set at 1920x1080, 60.0Hz. Is there something I can do to fix this? I've

  • Who use sql-mapping with java.util.regex?

    Hi everyone: I use the IBatis SQL-Mapping and I think it is very good.Now I want to add the search function to my BBS forum.I also want to display the content high light like jive.I mean that if I want to find the string "ibatis",then the search resu

  • Opening pdf in Internet Explorer on Windows

    I attempt to open a pdf file in Internet Explorer and get the following message: "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a web browser. Plesx exit Adobe Acrobat/Reader and try again". Acrobat Reader is then laun

  • Back to back scratch noises from speaker and headphone jack, very faint

    I'm having a headphone/speaker issue, but it is very difficult to describe. When I use my computer, the speakers or headphones (if plugged in) will occasionally emit two quick scratchy noises back to back. The speakers and headphones work great, but