summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2021-07-19 04:04:51 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2021-07-19 04:04:51 -0400
commit32c3b1af35c8f9b4ac48aaea99c6cb4a831b7150 (patch)
tree9936f37492febd014bda8772552024c72f3e6ed6
parent895e3cddce094371ee702d85d701b8a710491f6d (diff)
docs: fix broken image link
-rw-r--r--docs/content/configuration/config-file/data-filtering.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/configuration/config-file/data-filtering.md b/docs/content/configuration/config-file/data-filtering.md
index ae7ea30e..92a4c2a2 100644
--- a/docs/content/configuration/config-file/data-filtering.md
+++ b/docs/content/configuration/config-file/data-filtering.md
@@ -8,7 +8,7 @@ You can hide specific disks, temperature sensors, and networks by name in the co
For example, here's the disk widget with no filter:
-![Disk no filter](/assets/screenshots/config/disk-filtering/disk_no_filter.webp)
+![Disk no filter](../../../assets/screenshots/config/disk-filtering/disk_no_filter.webp)
The following in the config file would filter out some entries by disk name:
@@ -21,7 +21,7 @@ case_sensitive = false
whole_word = false
```
-![Disk widget with just disk name filter](/assets/screenshots/config/disk-filtering/disk_name_filter.webp)
+![Disk widget with just disk name filter](../../../assets/screenshots/config/disk-filtering/disk_name_filter.webp)
If there are two potentially conflicting filters (i.e. when you are using both a disk and mount filter), the filter that explicitly allows an entry takes precedence over a filter that explicitly denies one. So for example, let's say we set a disk filter accepting anything with `/dev/sda`, but deny anything with `/mnt/.*` or `/`. So to do so, we write in the config file:
@@ -43,4 +43,4 @@ whole_word = true
This gives us:
-![Disk widget with disk name and mount filter](/assets/screenshots/config/disk-filtering/disk_name_mount_filter.webp)
+![Disk widget with disk name and mount filter](../../../assets/screenshots/config/disk-filtering/disk_name_mount_filter.webp)