Percent window

Good evening, there is the possibility of having the percentage bar when moving files to the trash and to another location as in Windows, unfortunately when I carry out these operations I don’t see anything and I don’t know if the file in question performs this operation, thanks.
finestra percentuale

It behaves differently whether or not you have the notification widget running. Regardless though something should show up. If you have the notification widget isn’t working. The most common reason why it wouldn’t work is that it thinks another one is already running. If it is disabled, make sure there isn’t a window popping up behind the file manager.

rsync --progress /path/to/source-file /path/to/destination

this is what it looks like

You need to replace /path/to/source and /path/to/destination with the actual paths to the file you want to copy and the place you want to put it. You might want options like -a to preserve permissions, symlinks, etc. and --remove-source-files if you want to get rid of the original file (i.e. move rather than copy). rsync has a lot of options, if you want to use it it might be worth looking at https://wiki.archlinux.org/title/Rsync and https://man.archlinux.org/man/rsync.1

1 Like