implies no coloring at all.
You can define a different format with the option "format_not_mounted"
-which is used if the path does not exist or is not a mount point. So you can just empty
-the output for the given path with adding +format_not_mounted=""+
-to the config section.
+which is used if the path does not exist or is not a mount point. Defaults to "".
*Example order*: +disk /mnt/usbstick+
#else
struct statvfs buf;
+ if (format_not_mounted == NULL) {
+ format_not_mounted = "";
+ }
+
if (statvfs(path, &buf) == -1) {
/* If statvfs errors, e.g., due to the path not existing,
* we use the format for a not mounted device. */
- if (format_not_mounted != NULL) {
- format = format_not_mounted;
- }
- } else if (format_not_mounted != NULL) {
+ format = format_not_mounted;
+ } else {
FILE *mntentfile = setmntent("/etc/mtab", "r");
struct mntent *m;
bool found = false;