Xfce Forum

Sub domains
 

You are not logged in.

#1 2023-10-26 07:02:38

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

[SOLVED] User dirs directory icons in Thunar

I have added a custom directory to user-dirs.dirs (Books in this case) and would like it to have a special icon like the other "user dirs". The icon theme I use, Papirus, has a suitable icon for it (folder-green-books is the icon name), which I would like it to use. However, unlike the other directories, Thunar is only showing the default folder icon in the folder view as well as in the "Places" in the sidebar. Is there any way I can get it use the other icon?

I am using Linux Mint 21.2, Thunar 4.18.4 and the stated Papirus icon theme.

Directories

Last edited by BleepBloop225 (2023-10-31 21:32:45)

Offline

#2 2023-10-26 15:01:15

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

Re: [SOLVED] User dirs directory icons in Thunar

Hello and welcome.

xdg-user-dirs only supports a small subset of folders (see ~/.config/user-dirs.dirs). To enable custom folder icons, look at the tumbler custonimzed folder thumbnails.


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 2023-10-27 05:12:14

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

That is a shame, but I shall try your suggestion. Thanks for the help!

Offline

#4 2023-10-27 07:15:53

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

Followed your and the site's instructions, and still its functionality remains a bit unclear to me. Any further help would be appreciated.

I installed Tumbler and added the folder.thumbnailer and folder-thumbnailer files in their respective locations. I copied the file I wish to use as thumbnail (folder-green-books.svg) to the destination directory (Books). Then I changed the folder-thumbnailer file:

covers=("$2"/{.,}{folder,cover}.{jpg,png})

to

covers=("$2"/{.,}{folder-green-books}.{svg})

I marked the script executable, restarted Thunar/my PC multiple times and even ran the script manually, yet nothing happens.

Am I misunderstanding the docs and not using it correctly? What should I do to get it working?

Last edited by BleepBloop225 (2023-10-27 07:22:01)

Offline

#5 2023-10-27 11:06:08

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

Re: [SOLVED] User dirs directory icons in Thunar

I think there may be an error in the "folder.thumbnailer" file thats listed in the wiki. Can you change the last line to read:

Exec=sh -c '~/bin/folder-thumbnailer %s %i %o %u'

Also, if you want to process svg files, simply add it to the list of extensions in the ~/bin/folder-thumbnailer file (also rename your file to just "folder.svg" for ease in processing). Like this:

covers=("$2"/{.,}{folder,cover}.{jpg,png,svg})

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

#6 2023-10-28 05:09:34

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

After all of those actions the folder icon still has not changed. Any further advice?

Offline

#7 2023-10-28 10:16:07

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

Re: [SOLVED] User dirs directory icons in Thunar

Can you post back:

ls -l ~/.local/share/thumbnailers
ls -l ~/bin
cat ~/.local/share/thumbnailers/folder.thumbnailer
cat ~/bin/folder-thumbnailer

Also, can you run tumbler in debug mode and post the output back as well.

Note: I'm testing this on a Mint 21.2 VM and its working - there must be a typo somewhere.


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

#8 2023-10-29 08:41:31

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

Now I'm even more confused; without changing anything, now it suddenly seems to work. Don't know what's happening or why but I'll take it.

However, it seems the plugin doesn't handle transparency very well (or I have done something wrong again) as this is the result:

Transparency missing

Also, is it possible to get different icons for the sidebar in case the directory is pinned there (I'd like to have a symbolic one there to fit with the others)?

Still, here is the output of the commands you posted:

total 4
-rw-rw---- 1 user user 166 Oct 27 19:26 folder.thumbnailer
 
total 4
-rwxrwx--x 1 user user 409 Oct 28 19:19 folder-thumbnailer
 
[Thumbnailer Entry]
Version=1.0
Encoding=UTF-8
Type=X-Thumbnailer
Name=Folder Thumbnailer
MimeType=inode/directory;
Exec=sh -c '~/bin/folder-thumbnailer %s %i %o %u'
 
#!/bin/bash
 
covers=("$2"/{.,}{folder,cover}.{jpg,png,svg})
for f in "${covers[@]}"; do
  [ -f "$f" ] && {
    cover=$f
    break
  }
done
 
if [ -z "$cover" ] || ! convert -thumbnail "$1" "$cover" "$3"; then
  gdbus call --session --dest=org.freedesktop.thumbnails.Cache1 --object-path /org/freedesktop/thumbnails/Cache1 \
             --method org.freedesktop.thumbnails.Cache1.Delete "['$4']" >/dev/null
fi

And here is the debug mode log (I only took the part that appeared when entering the directory in question):

tumbler-xdg-cache-DEBUG: 10:33:14.364: Initializing the Tumbler XDG cache plugin
tumblerd-DEBUG: 10:33:14.413: Ready to handle requests
 
tumblerd-DEBUG: 10:33:17.097: Handling request 1
tumblerd-DEBUG: 10:33:17.097: URIs | Mime types:
  file:///home/user/Books/folder.svg | image/svg+xml
tumblerd-DEBUG: 10:33:17.097: Starting job 1
tumblerd-DEBUG: 10:33:17.098: Ready signal for job 1
tumblerd-DEBUG: 10:33:17.098: URIs:
  file:///home/user/Books/folder.svg
tumblerd-DEBUG: 10:33:17.098: Finishing job 1

Last edited by BleepBloop225 (2023-10-29 08:48:57)

Offline

#9 2023-10-29 10:54:52

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

Re: [SOLVED] User dirs directory icons in Thunar

That's because your source image is an svg and the thumbnail files are png. In the folder-thumbnailer file there is a convert command. You will need to add in the "-background none" option so the conversion creates a transparent png thumbnail.

Change the line that reads:

if [ -z "$cover" ] || ! convert -thumbnail "$1" "$cover" "$3"; then

...to:

if [ -z "$cover" ] || ! convert -background none -thumbnail "$1" "$cover" "$3"; then

Make sure you:

  1. Delete (or move) the current svg file you are using for the folder thumbnail

  2. close thunar via "thunar -q"

  3. kill the tumbler session via "pkill tumblerd"

  4. Make the change to the ~/bin/folder-thumbnailer file (if you haven't already done so)

  5. Restart thunar and move the svg file into place.

I believe the original intent of the thumbnailer was to use png and jpg files, but svg can be supported.


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

#10 2023-10-29 19:51:08

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

That is awesome, thank you! However, the image gets visibly blurry after its is applied to a directory. Is there a way to change the quality of the conversion?

Blurry conversion

Offline

#11 2023-10-29 23:24:33

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

Re: [SOLVED] User dirs directory icons in Thunar

Try adding "-density 400" to the line as well:

if [ -z "$cover" ] || ! convert -background none -density 400 -thumbnail "$1" "$cover" "$3"; then

If that doesn't work, what is the image size of the file that you are working with? The larger the default file the less blurriness you will see.


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

#12 2023-10-31 10:29:38

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

It works, but some areas of the image are now miscolored:

Miscolored

When manually converting the .svg file to .png the colors are correct but the image is again blurry:

Miscolored

The images are 64x64. I got the best results by first upscaling the images with another software to 256x256, will probably just stick with that unless there's something else I can try.

Finally, is there a way to assign a different (in my case symbolic) icon to the directory in the sidebar? The green one doesn't quite fit with the others in there.

Offline

#13 2023-10-31 12:09:41

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

Re: [SOLVED] User dirs directory icons in Thunar

BleepBloop225 wrote:

It works, but some areas of the image are now miscolored:

You might want to take a closer look at Imagemagick and the convert command. Perhaps there is a better set of parameters that can be used to generate a more accurate conversion.

Finally, is there a way to assign a different (in my case symbolic) icon to the directory in the sidebar? The green one doesn't quite fit with the others in there.

Unfortunately, I don't see how that would be possible using this method. The same icon would be used.


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

#14 2023-10-31 21:31:54

BleepBloop225
Member
Registered: 2023-10-26
Posts: 8

Re: [SOLVED] User dirs directory icons in Thunar

ToZ wrote:

You might want to take a closer look at Imagemagick and the convert command. Perhaps there is a better set of parameters that can be used to generate a more accurate conversion.

I shall look into that later on, thank you for the tip.

ToZ wrote:

Unfortunately, I don't see how that would be possible using this method. The same icon would be used.

That is indeed unfortunate, but only a minor setback.

You have been a massive help and I can't thank you enough! Hopefully my nitpicking wasn't too much of a chore to deal with. I'll mark this thread as solved for now.

Offline

Board footer

Powered by FluxBB