Yesterday at 8:12pm, ksc mumbled:
> If you want a quick and easy method of getting some icons stuck to your
> bb desktop try the ROX-Filer found at http://rox.sourceforge.net. I use
> 'exec rox -o -p Desktop &' in my .xinitrc, and just drag stuff from the
> rox filer to my desktop. Far faster than the whole KDE thing.
Yes, I use Blackbox together with ROX and it really rox!!
You can have icons on your desktop but also you can use a kind of sidebar
(I stick it to the left) with
rox --left=Desktop &
in your .xinitrc.
BTW you don't have to say `exec' when you want the process in the
background. The shell just recoqnizes the `rox' command as a single
command and will not keep a forked a subshell around (AFAIK) see following
dialog:
----
wilbert@nutnix:~ > xaos&
[1] 23938
wilbert@nutnix:~ > xaos&
[2] 23939
wilbert@nutnix:~ > exec xaos&
[3] 23940
wilbert@nutnix:~ > exec xaos&
[4] 23941
wilbert@nutnix:~ >
----
Enjoy!
Wilbert