summaryrefslogtreecommitdiffstats
path: root/doc/rofi.1.markdown
diff options
context:
space:
mode:
authorTonCherAmi <kratos661@gmail.com>2021-06-27 10:28:21 +0300
committerGitHub <noreply@github.com>2021-06-27 09:28:21 +0200
commit0ff0866be738f1bd99862fa091daad34cd21fc19 (patch)
tree9579a3857a4951f8e12b889fb4a70a0b0b12539c /doc/rofi.1.markdown
parent330402aa1351c6b5397dc896345fe8ae3756e261 (diff)
[FileBrowser] Add sorting-method. (#1340)
* [FileBrowser] Add sorting-method. * [FileBrowser] Convert -file-browser-directory to new config format.
Diffstat (limited to 'doc/rofi.1.markdown')
-rw-r--r--doc/rofi.1.markdown19
1 files changed, 17 insertions, 2 deletions
diff --git a/doc/rofi.1.markdown b/doc/rofi.1.markdown
index 107ef85a..20a14677 100644
--- a/doc/rofi.1.markdown
+++ b/doc/rofi.1.markdown
@@ -698,9 +698,24 @@ Message can be multi-line.
### File browser settings
-`-filebrowser-directory` *directory*
+File browser behavior can be controlled via the following options:
-Directory the file browser starts in.
+```css
+configuration {
+ filebrowser {
+ /** Directory the file browser starts in. */
+ directory: "/some/directory";
+ /**
+ * Sorting method. Can be set to:
+ * - "name"
+ * - "mtime" (modification time)
+ * - "atime" (access time)
+ * - "ctime" (change time)
+ */
+ sorting-method: "name";
+ }
+}
+```
### Other