Xfce Forum

Sub domains
 

You are not logged in.

#1 2020-12-07 16:22:19

Celestral
Member
Registered: 2020-11-20
Posts: 11

how can I remove the icons from the panel entry's

When a entry in the panel is open it has by default a icon loaded.
I would like to remove this icon on the left smile

I also would like to do this for my Thunar.


here a example ..
https://postimg.cc/bDzKQ5Vr

hope there is some solution !

Offline

#2 2020-12-07 18:48:04

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,046

Re: how can I remove the icons from the panel entry's

Celestral wrote:

When a entry in the panel is open it has by default a icon loaded.
I would like to remove this icon on the left smile

Do you mean just have the text there - no image? Is this for all items in that plugin (window buttons/tasklist)? Or just that one?

I also would like to do this for my Thunar.

What do you mean by this? No icons in thunar? Or no thunar icons in the window buttons/tasklist plugin?

What version of xfce4-panel and thunar are you running?


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#3 2020-12-08 08:12:56

Celestral
Member
Registered: 2020-11-20
Posts: 11

Re: how can I remove the icons from the panel entry's

ToZ wrote:
Celestral wrote:

When a entry in the panel is open it has by default a icon loaded.
I would like to remove this icon on the left smile

Do you mean just have the text there - no image? Is this for all items in that plugin (window buttons/tasklist)? Or just that one?

I also would like to do this for my Thunar.

What do you mean by this? No icons in thunar? Or no thunar icons in the window buttons/tasklist plugin?

What version of xfce4-panel and thunar are you running?


Hey thanks for your reaction.
my xfce panel version is : 4.14.3 (Xfce 4.14)

I would like to only have text in the whole window buttons/tasklist. This counts for thunar as well. I dont want small icons at all.

greetings !

Offline

#4 2020-12-08 12:38:36

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,046

Re: how can I remove the icons from the panel entry's

You can remove the icon by scaling it to a 0 size. Try the following in ~/.config/gtk-3.0/gtk.css:

.tasklist image { -gtk-icon-transform: scale(0); }

This will leave a gap where the icon used to be. You can adjust for this as well (to some extent) by playing with the margin value:

.tasklist image { -gtk-icon-transform: scale(0);  margin: -10px; }

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#5 2020-12-09 13:28:17

Celestral
Member
Registered: 2020-11-20
Posts: 11

Re: how can I remove the icons from the panel entry's

ToZ wrote:

You can remove the icon by scaling it to a 0 size. Try the following in ~/.config/gtk-3.0/gtk.css:

.tasklist image { -gtk-icon-transform: scale(0); }

This will leave a gap where the icon used to be. You can adjust for this as well (to some extent) by playing with the margin value:

.tasklist image { -gtk-icon-transform: scale(0);  margin: -10px; }

Thank you! this works great.

I also applied this to thunar without succes sad
i targeted the following

.thunar statusbar to remove the image in the corner of the statusbar.
and i targeted
.thunar .sidebar to remove the icons next to the places like (documents, downloads etc)

both without success..

Offline

#6 2020-12-09 16:02:33

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,046

Re: how can I remove the icons from the panel entry's

Celestral wrote:

I also applied this to thunar without succes sad
i targeted the following

.thunar statusbar to remove the image in the corner of the statusbar.
and i targeted
.thunar .sidebar to remove the icons next to the places like (documents, downloads etc)

both without success..

Which icon/image in thunar are you trying to remove? Can you provide a screenshot?


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#7 2020-12-10 07:54:30

Celestral
Member
Registered: 2020-11-20
Posts: 11

Re: how can I remove the icons from the panel entry's

ToZ wrote:
Celestral wrote:

I also applied this to thunar without succes sad
i targeted the following

.thunar statusbar to remove the image in the corner of the statusbar.
and i targeted
.thunar .sidebar to remove the icons next to the places like (documents, downloads etc)

both without success..

Which icon/image in thunar are you trying to remove? Can you provide a screenshot?

So this is from the thunar side panel.
https://imgur.com/a/yjHEgwg

and this is from the location bar

https://imgur.com/a/IFtaNn9

so i would like to remove this small icons!

thanks for your help again !

Offline

#8 2020-12-10 12:48:24

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,046

Re: how can I remove the icons from the panel entry's

Celestral wrote:

So this is from the thunar side panel.
https://imgur.com/a/yjHEgwg

I don't think it is possible to remove these icons. They don't seem to be exposed in a way that can be modified. There is a setting in preferences, but it only allows a size down to 16.

and this is from the location bar

https://imgur.com/a/IFtaNn9

so i would like to remove this small icons!

Try:

.thunar #location-toolbar button { margin: -20px; }

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#9 2020-12-11 06:59:15

Celestral
Member
Registered: 2020-11-20
Posts: 11

Re: how can I remove the icons from the panel entry's

ToZ wrote:
Celestral wrote:

So this is from the thunar side panel.
https://imgur.com/a/yjHEgwg

I don't think it is possible to remove these icons. They don't seem to be exposed in a way that can be modified. There is a setting in preferences, but it only allows a size down to 16.

and this is from the location bar

https://imgur.com/a/IFtaNn9

so i would like to remove this small icons!

Try:

.thunar #location-toolbar button { margin: -20px; }

tried what you said, didn't workout sad you think I can recompile Thunar?

Offline

#10 2020-12-11 12:18:16

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,046

Re: how can I remove the icons from the panel entry's

What version of thunar do you have? Try logging out and back in again.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

Board footer

Powered by FluxBB