blob: d14845757cf03b84752cf3466a791412870ab9c2 (
plain)
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
|
[module/filesystem]
type = internal/fs
# Mountpoints to display
mount-0 = /
mount-1 = /home
# mount-2 = /var
# Seconds to sleep between updates
# Default: 30
interval = 30
# Display fixed precision values
# Default: false
fixed-values = true
# Spacing between entries
# Default: 2
spacing = 1
# Available tags:
# <label-mounted> (default)
# <bar-free>
# <bar-used>
# <ramp-capacity>
# format-mounted-prefix = " "
format-mounted = <label-mounted>
format-mounted-underline = ${colors.cyan}
# Available tags:
# <label-unmounted> (default)
format-unmounted = <label-unmounted>
format-unmounted-foreground = ${colors.white}
format-unmounted-underline = ${colors.white}
# Available tokens:
# %mountpoint%
# %type%
# %fsname%
# %percentage_free%
# %percentage_used%
# %total%
# %free%
# %used%
# Default: %mountpoint% %percentage_free%%
label-mounted = %mountpoint%: %percentage_used%%
# Available tokens:
# %mountpoint%
# Default: %mountpoint% is not mounted
label-unmounted = %mountpoint%: -
|