You are not logged in.
Pages: 1
Hello, for some sort of reason, an update a while back changed the icons my thunar. I am using the numix circle icon pack from Arch and I've already checked with those guys and it seems to me that they have not changed anything: https://github.com/numixproject/numix-i … ssues/1315. So I've lead to believe that something is wrong here:
This is what I have currently:
And this is what I expect:
Last edited by Hacksaurus_Babu (2018-10-08 16:26:22)
Glory to Arstotzka!
Offline
Thunar changed to using symbolic icons. To revert back to regular icons, add the following snippet to ~/.config/gtk-3.0/gtk.css:
/* regular thunar toolbar icons */
.thunar {
-gtk-icon-style: regular;
}
How To Ask For Help | FAQ | Release Info | Community | Contribute | Donate
Online
Thank you! Is there any way to change the size of these icons? They seem to be only 16px and I would like them a little bit bigger? Marking as solved!
Glory to Arstotzka!
Offline
Try:
/* thunar toolbar icons */
.thunar {
-gtk-icon-style: regular;
-gtk-icon-transform: scale(1.3);
}
...and change the "1.3" to suit.
How To Ask For Help | FAQ | Release Info | Community | Contribute | Donate
Online
Sorry any number in the scale section doesn't seem to change anything..
PS: I noticed that the in xfce4-clipman that the arrow has changed to symbolic I tried doing .clipman to change it, but no dice how can I change the arrow in clipman?
Glory to Arstotzka!
Offline
Sorry any number in the scale section doesn't seem to change anything..
Hmm. Looks like something has changed. Try this snippet instead:
.thunar > grid > toolbar * {
-gtk-icon-style: regular;
-gtk-icon-transform: scale(1.3);
}
PS: I noticed that the in xfce4-clipman that the arrow has changed to symbolic I tried doing .clipman to change it, but no dice how can I change the arrow in clipman?
Looks like it's hard-coded now. (https://git.xfce.org/panel-plugins/xfce … 78c279e6b8 - go-next-symbolic). I can't seem to change it.
How To Ask For Help | FAQ | Release Info | Community | Contribute | Donate
Online
Ugh. Alright, I'm now just gonna batter the numix icon guys on why their symbolic icons sux
Glory to Arstotzka!
Offline
Pages: 1