Posts: 4
benkong2
Joined: 26 Feb 2009
#1
my wicd-client does not display in the taskbar but in the upper left corner. What am I doing wrong? How can I ensure that the wicid-icon is in the correct place. In my autostart.sh the line is wicd-client &
Posts: 1,081
OU812
Joined: 29 Sep 2007
#2
I think it is a timing issue - perhaps the app is launching before the toolbar. This will cause that"orphaned" window you're experiencing. Instead, try editing your ~/.icewm/startup file.

Old

Code: Select all

#wicd-client &
New

Code: Select all

wicd-client &
john
anticapitalista
Posts: 5,955
Site Admin
Joined: 11 Sep 2007
#3
I get this when I switch 'desktop' from icewm to fluxbox and vice-versa via the menu.
If I logout to change 'desktop' it doesn't happen.
Posts: 1,081
OU812
Joined: 29 Sep 2007
#4
Maybe edit autostart.sh

Code: Select all

(sleep 2; wicd-client &) &
This may prevent the timing issue and prevent the orphaned window.

john