LXQT 0.14.0 PCManFM-Qt session Trash
Hi,
I tried to implement a PCManFM-Qt session Trash on user level:
ls -lah /etc/local.d/trash_init.start
-rwxr-xr-x 1 root root 441 Feb 7 12:09 /etc/local.d/trash_init.start
cat /etc/local.d/trash_init.start
But PCManFM-Qt just hung on "move to trash' function. No error message.
Any idee ?
Update:
OK. Here is a freebee for motivation: Fully automated pacman cache control
sudo mkdir -p /etc/pacman.d/hooks
cat /etc/pacman.d/hooks/cleancache.hook
[Trigger]
Type = File
Operation = Install
Operation = Upgrade
Operation = Remove
Target = *
[Action]
Description = Delete files older than 30 days from the cache directory
When = PostTransaction
Exec = /usr/bin/find /var/cache/pacman/pkg/ -mindepth 1 -name '*' -mtime +30 -delete