Page 1 of 1

How to not show a running program in the taskbar? SOLOVED

Posted: Fri 25 Jan 2013, 19:01
by oldyeller
Hi Everyone,

Is it possible to have a program opened and not shown on the taskbar?

I have made a launcher Manna Menu and would like not to have it shown on the taskbar since it will be on the screen full time.

Thanks for any help

Cheers

Posted: Fri 25 Jan 2013, 20:56
by musher0
Hi.

Here's only enough to wet your water pump, since I don't know how to do it in jwm... (shame on me) :)

In icewm or lxp-icewm you'd insert the following line in your winoptions file :

Code: Select all

XLoad.ignoreTaskBar: 1
(replacing "XLoad" with the proper program name)

BFN.

musher0

Posted: Fri 25 Jan 2013, 20:58
by seaside
You can do it in JWM by the class nolist function- see here-
http://joewing.net/projects/jwm/config.shtml#trays

Cheers,
s

Posted: Fri 25 Jan 2013, 21:49
by Keef
.... but you'll be lucky if it works!!

Posted: Fri 25 Jan 2013, 22:14
by seaside
Keef wrote:.... but you'll be lucky if it works!!
Keef, point well taken.

I found that gtkdialog usually needs both class and name-

Code: Select all

--name=nolist --class=nolist
and in /root/.jwm/jwmrc-personal

Code: Select all

<Group>
<Name>nolist</Name>
<Class>nolist</Class>
<Option>nolist</Option>
</Group>
Cheers,
s

Re: How to not show a running program in the taskbar?

Posted: Fri 25 Jan 2013, 22:20
by SFR
oldyeller wrote:I have made a launcher Manna Menu and would like not to have it shown on the taskbar since it will be on the screen full time.
If your app uses Gtkdialog:

Code: Select all

<window skip-taskbar-hint="true">
Greetings!

Re: How to not show a running program in the taskbar?

Posted: Fri 25 Jan 2013, 23:11
by seaside
SFR wrote:
oldyeller wrote:I have made a launcher Manna Menu and would like not to have it shown on the taskbar since it will be on the screen full time.
If your app uses Gtkdialog:

Code: Select all

<window skip-taskbar-hint="true">
Greetings!
SFR,
Yes, much easier for gtkdialog.
regards,
s

Re: How to not show a running program in the taskbar?

Posted: Sat 26 Jan 2013, 07:19
by oldyeller
seaside wrote:
SFR wrote:
oldyeller wrote:I have made a launcher Manna Menu and would like not to have it shown on the taskbar since it will be on the screen full time.
If your app uses Gtkdialog:

Code: Select all

<window skip-taskbar-hint="true">
Greetings!
SFR,
Yes, much easier for gtkdialog.
regards,
s
Hello Everyone,

Thanks for all of your help.

@SFR That did work for not showing on taskbar. But I end up using this pet from here http://murga-linux.com/puppy/viewtopic. ... 570#588570 which allowed me to have it off and not have a window frame as well.

It seems that this works out the best for me

Cheers