···2828 ConfigUnknownError,
2929 ConfigPathNotFound,
3030 CannotDeleteTrashDir,
3131- DuplicateKeybinds,
3231 InvalidKeybind,
3332 NotADir,
3433};
···8079 .ConfigUnknownError => self.write("Could not read config due to an unknown error.", .err),
8180 .ConfigPathNotFound => self.write("Could not read config due to unset env variables. Please set either $HOME or $XDG_CONFIG_HOME.", .err),
8281 .CannotDeleteTrashDir => self.write("Cannot delete trash directory.", .err),
8383- .DuplicateKeybinds => self.write("Config has keybinds with the same key. This can lead to undefined behaviour. Check log file for more information.", .err),
8482 .InvalidKeybind => self.write("Config has keybind(s) with invalid key(s).", .err),
8583 };
8684}