change sorting, e.g. of files in nautilus

This commit is contained in:
Daniel Langbein 2021-09-08 10:27:16 +02:00
parent 3f208d3401
commit 783d622fe9
3 changed files with 10 additions and 3 deletions

View File

@ -2,7 +2,7 @@
_pkgname=locale _pkgname=locale
_reponame=arch _reponame=arch
pkgname="de-p1st-$_pkgname" pkgname="de-p1st-$_pkgname"
pkgver=0.1.1 pkgver=0.1.2
pkgrel=1 pkgrel=1
pkgdesc="locale and timezone" pkgdesc="locale and timezone"
arch=('any') arch=('any')

View File

@ -1,6 +1,6 @@
# locale # locale
Note: One may need to delete `/etc/locale.conf` and `/etc/localtime` before installing this pkg **Note**: One may need to delete `/etc/locale.conf` and `/etc/localtime` before installing this pkg
## locale.conf ## locale.conf

View File

@ -1,6 +1,13 @@
LANG=en_US.UTF-8 LANG=en_US.UTF-8
LANGUAGE=en_US LANGUAGE=en_US
LC_COLLATE=C # LC_COLLATE: This category governs the collation rules used for sorting and
# regular expressions, including character equivalence classes and
# multicharacter collating elements.
# -> Sort order of strings, e.g. of order of files by 'ls' or in 'nautilus'
# -> 'C' sorts [A, Z, a, z]
# -> 'en_US.UTF-8' sorts [A, a, Z, z]
# -> 'en_DE.UTF-8' sorts [a, A, z, Z]
LC_COLLATE=de_DE.UTF-8
LC_TIME=de_DE.UTF-8 LC_TIME=de_DE.UTF-8
LC_MONETARY=de_DE.UTF-8 LC_MONETARY=de_DE.UTF-8
# LC_NUMERIC: Formatting rules for non monetary numeric values. # LC_NUMERIC: Formatting rules for non monetary numeric values.