Views:
1,092
Votes: 4
✅ Solution
Tags:
nautilus
19.04
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1159965
Title:
Nautilus doesn't remember sorting options in Ubuntu 19.04
ID:
/2019/07/21/Nautilus-doesn_t-remember-sorting-options-in-Ubuntu-19.04
Created:
July 21, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
This should work in all supported Ubuntu releases. First get default sort order:
$ gsettings get org.gnome.nautilus.preferences default-sort-order
'name'
Now change it to new sort order by modification date:
$ gsettings set org.gnome.nautilus.preferences default-sort-order 'mtime'
The list of all sort values allowed:
- by Name =
'name'
- by Size =
'size'
- by Type =
'type'
- by Modification Date =
'mtime'
- by Access Date =
'atime'
- by Trashed Date =
'trash-time'