thunar-sort
Aby thunar sortował zawartość uwzględniając wielkość liter musimy aktywować ustawienia, które są ukryte w standardowym interfejsie.
/misc-case-sensitive bool Określa czy sortowanie powinno odbywać się z uwzględnieniem wielkości liter. Wartość domyślna to fałsz.
aby aktywować funkcję wykonujemy polecenie
xfconf-query --channel thunar --property /misc-case-sensitive \ --create --type bool --set true
Trzeba też ustawić zmienną LC_COLLATE na wartość C dla całego systemu
File: /etc/default/locale
1 │ # File generated by update-locale
2 │ LANG=pl_PL.UTF-8
3 │ LC_COLLATE=C
sudo update-locale
Resetujemy thunar’a.
# to kill the existing thunar process thunar --quit # and start a new one with the environment variable set thunar --daemon &