topic title: wicd-client displays in the wrong place
4 posts
• Page 1 of 1
-
Posts: 4
- 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
- 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
New
john
Old
Code: Select all
#wicd-client &
Code: Select all
wicd-client &
-
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.
If I logout to change 'desktop' it doesn't happen.
-
Posts: 1,081
- Joined: 29 Sep 2007
#4
Maybe edit autostart.sh
This may prevent the timing issue and prevent the orphaned window.
john
Code: Select all
(sleep 2; wicd-client &) &
john