You are not logged in.
Pages: 1
Does Thunar have the ability to add the immutable attribute ?
Thanks.
Ubuntu-Mate 24.04
Offline
Not built-in, no. But you can use a custom action.
Assuming you have pkexec/polkit properly configured and a graphical authentication agent installed, you can create a custom action that runs this script that toggles the immutable flag for any one file at a time:
#!/usr/bin/env bash
if lsattr "$1" | awk '{print $1}' | grep i; then
pkexec chattr -i "$1"
else
pkexec chattr +i "$1"
fi
exit 0
Use %f in the custom action to pass to the script and set it to access all file types.
Mark solved threads as [SOLVED] to make it easier for others to find solutions.
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Pages: 1
[ Generated in 0.008 seconds, 7 queries executed - Memory usage: 522.8 KiB (Peak: 529.23 KiB) ]