You are not logged in.

#1 2010-10-05 20:25:27

jboons
Member
Registered: 2010-09-25
Posts: 37

[Solved] tint2 opens two WICD icons

My tint2 loads two WICD icons from the start. Is there anything in my autostart that would indicate that? I can't tell:

# This shell script is run before Openbox launches.
# Environment variables set here are passed to the Openbox session.

. $GLOBALAUTOSTART
adeskbar &
sh ~/.fehbg &
conky &

# Set a background color
BG=""
if which hsetroot >/dev/null 2>&1; then
    BG=hsetroot
else
    if which esetroot >/dev/null 2>&1; then
        BG=esetroot
    else
        if which xsetroot >/dev/null 2>&1; then
            BG=xsetroot
        fi
    fi
fi
test -z $BG || $BG -solid "#303030"

# D-bus
if which dbus-launch >/dev/null 2>&1 && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
       eval `dbus-launch --sh-syntax --exit-with-session`
fi

# Make GTK apps look and behave how they were set up in the gnome config tools
if test -x /usr/libexec/gnome-settings-daemon >/dev/null; then
  /usr/libexec/gnome-settings-daemon &
elif which gnome-settings-daemon >/dev/null 2>&1; then
  gnome-settings-daemon &
# Make GTK apps look and behave how they were set up in the XFCE config tools
elif which xfce-mcs-manager >/dev/null 2>&1; then
  xfce-mcs-manager n &
fi

# Preload stuff for KDE apps
if which start_kdeinit >/dev/null 2>&1; then
  LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup &
fi

# Run XDG autostart things.  By default don't run anything desktop-specific
# See xdg-autostart --help more info
DESKTOP_ENV="OPENBOX"
if which /usr/lib/openbox/xdg-autostart >/dev/null 2>&1; then
  /usr/lib/openbox/xdg-autostart $DESKTOP_ENV
fi

Last edited by jboons (2010-10-05 20:43:57)

Offline

#2 2010-10-05 20:28:30

Stebalien
Member
Registered: 2010-04-27
Posts: 1,237
Website

Re: [Solved] tint2 opens two WICD icons

No. What is your $GLOBALAUTOSTART, what is in your /etc/xdg/autostart/ folder, and what is in your $HOME/.config/autostart/ folder.


Steven [ web : git ]
GPG:  327B 20CE 21EA 68CF A7748675 7C92 3221 5899 410C
Do not email: honeypot@stebalien.com

Offline

#3 2010-10-05 20:43:31

jboons
Member
Registered: 2010-09-25
Posts: 37

Re: [Solved] tint2 opens two WICD icons

Hm, I actually don't remember why I have $GLOBALAUTOSTART in there. I got rid of it and it solved my problem.

Offline

Board footer

Powered by FluxBB