Page 2 of 8

Posted: Fri 20 Jul 2007, 04:10
by panda_watch
Hi,

I'm running Icewm and I'm very keen to use wbar. I've installed it but when it launches it is inside a window and sits in the taskbar. how can you stop this?

Thanks

Posted: Fri 20 Jul 2007, 06:41
by panda_watch
Sorry,

Just checked the readme and realised my mistake. However I've come across another problem. The system will not allow me to shutdown until I terminate the wbar program. When I click shutdown it does nothing so I have to cancel it and then close wbar then it works. Any ideas?

Cheers

Posted: Fri 20 Jul 2007, 06:45
by MU
try to add a line "killall wbar" to /root/my-applications/bin/icewmpoweroff.

Myself I use xkill, that I have put on my desktop.
http://www.murga-linux.com/puppy/viewto ... =5931#5931

Mark

Posted: Sun 22 Jul 2007, 21:11
by Eyes-Only
@Rhino:

Just a quick comment mate. Wanted to say that I love that desktop screenie of yours. Absolutely stunning! Pizza may have made the wallpaper, but you've done an excellent job of making JWM look breath-takingly beautiful. Who'd ever think that little window manager could look that great? :shock:

And yes---I've been a longtime admirer of your JWM themes as I have several of them myself back from when you'd made them.

Seems like we have you for an eye on JWM, and WhoDo for IceWM, Doughal on Xfce, and MU on KDE. We're so fortunate to have such artists in our midst! :)

Amicalement,

Eyes-Only
"L'Peau-Rouge"

Posted: Mon 23 Jul 2007, 07:26
by panda_watch
Thanks Mark,

Its working now i've added the line. :D

Posted: Mon 23 Jul 2007, 20:49
by Rhino
Thanks, Eyes-only, I appreciate it. JWM has some potential in it. It's not going to match up with Beryl, but it can be quite serviceable. I think wbar helps it out a great deal.

bash tells me

Posted: Sat 06 Oct 2007, 21:33
by Oberon85
wbar: command not found within the folder where wbar resides...?

Posted: Sun 07 Oct 2007, 03:17
by HairyWill
if the directory is not in the PATH you need
./wbar

Posted: Sat 17 Nov 2007, 19:17
by PuppyLinuxGuy
That's perfect for use in PLP. I'm running XFCE, so i'll disable the panel using a script i made and run Wbar instead, along with the Pinboard parser.
PLP on this forum: http://www.murga-linux.com/puppy/viewtopic.php?p=153565

Posted: Tue 20 Nov 2007, 08:26
by Vettephil
This one is for the "experts": how about reducing the usable size of the pinboard(?) so that wbar can always be seen, instead of disappearing behind full-sized windows? This would give it a nice XFCE Panel behavior, allowing buttons to always be accessible without minimizing or closing open apps/windows.

Thanks!
-PHIL

Posted: Tue 20 Nov 2007, 09:31
by HairyWill
The maximised window size is controlled by the window manager, jwm. But I think the only way currently to restrict the maximised window size is to create a tray (taskbar), which would probably sit on top of wbar and would look ugly whichever way it turned out.

I agree that a tray at the top (or bottom) and wbar at the other would look good but I think it will require a hack of jwm to achieve it.

Posted: Tue 20 Nov 2007, 16:34
by HairyWill
Ok Vettephil I rise to the challenge as long as you are willing to give up a single pixel of you desktop to a dummy jwm tray.

Assuming you have the default sized wbar at the bottom of a 1024x768 screen the following tray entry in /root/.jwmrc-tray gets what you asked for.

Code: Select all

<Tray  x="500" y="723" width="1" height="1"></Tray>
a tiny near invisible tray that jwm will respect when maximising windows.
The slight kicker which you didn't specify is when the icons grow they do it behind the windows, you can move them in front of the widows by cracking up the layer that wbar is on but then it controls some of the space at the bottom of a maximised window which looks really ugly. This is because wbar's transparency is fake, it just copies the background when it starts.

For more fun with jwm trays read
http://joewing.net/programs/jwm/config.shtml

Posted: Tue 20 Nov 2007, 20:18
by Vettephil
HairyWill: Nicely done! That has however produced another issue to overcome. :? When minimizing an app's window to the "fake tray" there is no way to get it back again. See if you can reproduce.

My thought around this is to run 2 trays if possible. A normal one at the top and the fake one at the bottom as a place holder for Wbar. I'm going to test this next. Thanks!

Posted: Tue 20 Nov 2007, 20:25
by Vettephil
A second tray worked! Here is my full code from /.jwmrc-tray:

Code: Select all

<JWM>
	<Tray  autohide="false" insert="right" x="0" y="0" border="0" height="26" >

		<!-- Additional TaskList attribute: maxwidth -->
		<TaskList maxwidth="160"/>

		<Dock/>

		<!-- Additional Swallow attribute: height -->
		<Swallow name="blinky">
			blinkydelayed -bg gray90
		</Swallow>

		<Swallow name="mini-volume.tcl">
			mini-volume.tcl -bg gray90 -mixer pvolume-mixer.tcl
		</Swallow>
		
		<Swallow name="freememapplet" width="48">
			<!-- freememappletdelayed -->
			freememapplet
		</Swallow>

		<Swallow name="xload" width="32">
			xload -nolabel -bg "#BCBAB5" -fg red -hl white
		</Swallow>

		<Swallow name="wbar">
   			killall wbar ; wbar -above-desk &
		</Swallow> 
		
		<Clock>minixcal</Clock>
	</Tray>

	<Tray  autohide="false" insert="right" x="500" y="723" border="0" height="1" width="1" > </Tray>

</JWM>
Nice cooperative effort, all!
-PHIL

Posted: Tue 20 Nov 2007, 20:41
by HairyWill
I had just assumed you would have a proper tray running as well.

The real tray wouldn't be so important if jwm supported unminimising using the keyboard alone but at the moment ALT-TAB only toggles programs that are not minimised. This is IMHO a significant weakness.

Posted: Wed 21 Nov 2007, 11:47
by Dougal
Vettephil wrote:HairyWill: Nicely done! That has however produced another issue to overcome. :? When minimizing an app's window to the "fake tray" there is no way to get it back again. See if you can reproduce.

My thought around this is to run 2 trays if possible. A normal one at the top and the fake one at the bottom as a place holder for Wbar. I'm going to test this next. Thanks!
You can also enable the option in Rox that minimizes windows as thumbnails on the desktop.

Posted: Wed 21 Nov 2007, 15:26
by Vettephil
Dougal wrote: You can also enable the option in Rox that minimizes windows as thumbnails on the desktop.
Ooooh, that sounds neat! Which file/what code if you don't mind?

-PHIL

Posted: Wed 21 Nov 2007, 18:10
by trapster
Vettephil -
Right click in a Rox window and choose "options". Under the "Pinboard" menu, choose "Iconified windows".

Posted: Thu 06 Dec 2007, 20:45
by magerlab
very nice and interesting app
is there a wat to put it into xinitrc file?
i think that itÅ› possible to remove icons and font from the package because
you can define path to any icon or font(to support russian i defined dejavu instead the font that was inside the pack)
i use different rox panels with different walpapers
but wbar sticks to the first wallpaper
is it possible to turn off transparency?

also does anyone know where rox takes the pictures for placing minimized apps on the desktop?
some of them are just empty windows instead of icon

Posted: Mon 25 Feb 2008, 06:07
by yim
is there a way to get this to run on 2.16 multisession cd
I have tried every way I can think of and it still doesn't work
how do you make it run after untaring?

thanks yim