1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
# YAML file configuration options
Gdu provides an additional set of configuration options to the usual command line options.
You can get the full list of all possible options by running:
```
gdu --write-config
```
This will create file `$HOME/.gdu.yaml` with all the options set to default values.
Let's go through them one by one:
#### `log-file`
Path to a logfile (default "/dev/null")
#### `input-file`
Import analysis from JSON file
#### `output-file`
Export all info into file as JSON
#### `ignore-dirs`
Paths to ignore (separated by comma). Can be absolute (like `/proc`) or relative to the current working directory (like `node_modules`). Default values are [/proc,/dev,/sys,/run].
#### `ignore-dir-patterns`
Path patterns to ignore (separated by comma). Patterns can be absolute or relative to the current working directory.
#### `ignore-from-file`
Read path patterns to ignore from file. Patterns can be absolute or relative to the current working directory.
#### `max-cores`
Set max cores that Gdu will use.
#### `sequential-scanning`
Use sequential scanning (intended for rotating HDDs)
#### `show-apparent-size`
Show apparent size
#### `show-relative-size`
Show relative size
#### `show-item-count`
Show number of items in directory
#### `no-color`
Do not use colorized output
#### `mouse`
Use mouse
#### `non-interactive`
Do not run in interactive mode
#### `no-progress`
Do not show progress in non-interactive mode
#### `no-cross`
Do not cross filesystem boundaries
#### `no-hidden`
Ignore hidden directories (beginning with dot)
#### `no-delete`
Do not allow deletions
#### `no-view-file`
Do not allow viewing file contents
#### `follow-symlinks`
Follow symlinks for files, i.e. show the size of the file to which symlink points to (symlinks to directories are not followed)
#### `profiling`
Enable collection of profiling data and provide it on http://localhost:6060/debug/pprof/
#### `read-from-storage`
Read analysis data from persistent key-value storage
#### `summarize`
Show only a total in non-interactive mode
#### `use-si-prefix`
Show sizes with decimal SI prefixes (kB, MB, GB) instead of binary prefixes (KiB, MiB, GiB)
#### `no-prefix`
Show sizes as raw numbers without any prefixes (SI or binary) in non-interactive mode
#### `reverse-sort`
Reverse sorting order (smallest to largest) in non-interactive mode
#### `change-cwd`
Set CWD variable when browsing directories
#### `delete-in-background`
Delete items in the background, not blocking the UI from work
#### `delete-in-parallel`
Delete items in parallel, which might increase the speed of deletion
#### `browse-parent-dirs`
Allow navigating above the launch directory by pressing the left arrow key. When enabled, pressing left at the top-level directory will rescan and open its parent directory. Disabled by default.
#### `style.selected-row.text-color`
Color of text for the selected row
#### `style.selected-row.background-color`
Background color for the selected row
#### `style.progress-modal.current-item-path-max-len`
Maximum length of file path for the current item in progress bar.
When the length is reached, the path is shortened with "/.../".
#### `style.use-old-size-bar`
Show size bar without Unicode symbols.
#### `style.footer.text-color`
Color of text for footer bar
#### `style.footer.background-color`
Background color for footer bar
#### `style.footer.number-color`
Color of numbers displayed in the footer
#### `style.header.text-color`
Color of text for header bar
#### `style.header.background-color`
Background color for header bar
#### `style.header.hidden`
Hide the header bar
#### `style.result-row.number-color`
Color of numbers in result rows
#### `style.result-row.directory-color`
Color of directory names in result rows
#### `sorting.by`
Sort items. Possible values:
* name - name of the item
* size - usage or apparent size
* itemCount - number of items in the folder tree
* mtime - modification time
#### `sorting.order`
Set sorting order. Possible values:
* asc - ascending order
* desc - descending order
|