Xfce Forum

Sub domains
 

You are not logged in.

#1 2025-02-20 21:27:44

fixit
Member
Registered: 2015-01-19
Posts: 131
LinuxFirefox 135.0

Add the immutable attribute to files

Does Thunar have the ability to add the immutable attribute ?

Thanks.


Ubuntu-Mate 24.04

Offline

#2 2025-02-20 22:10:40

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 11,815
LinuxFirefox 135.0

Re: Add the immutable attribute to files

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

Registered users online in this topic: 0, guests: 1
[Bot] ClaudeBot

Board footer

Powered by FluxBB
Modified by Visman

[ Generated in 0.008 seconds, 7 queries executed - Memory usage: 522.8 KiB (Peak: 529.23 KiB) ]