Remove name of applications (not title) in popups ?

Asked by archi02

Hi,

Thanks very much for this dock, and to be reactive for resolving bugs. :)

Is there any way to remove the name of applications in popups ? I mean, the Firefox icon is enough for me to know that is the Firefox button, read in the popup that is the 'Firefox browser' is unnecessary. I would like to get only the list of opened windows. I've search through the windowbutton.py file... without success.

Any help ? Thanks in advance !

Question information

Language:
English Edit question
Status:
Solved
For:
DockbarX Edit question
Assignee:
No assignee Edit question
Solved by:
Matias Särs
Solved:
Last query:
Last reply:
Revision history for this message
Best Matias Särs (msevens) said :
#1

You should look in groupbutton.py instead. After line 2414 that should say self.title = gtk.Label(), add this line: self.title.set_no_show_all(True)

That should do it (if I understood what you wanted to do correctly).

Revision history for this message
archi02 (jo-chibois) said :
#2

Wonderful ! It works perfectly ! :) Thanks a lot...

Revision history for this message
archi02 (jo-chibois) said :
#3

Thanks Matias Särs, that solved my question.