From 241220745fbc36e41222742e6fc2d9ae6c2e1208 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Wed, 13 Aug 2025 23:20:14 -0400 Subject: [PATCH] All config files should be lowercase --- Assets/Wallust/wallust.toml | 2 +- Services/Colors.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/Wallust/wallust.toml b/Assets/Wallust/wallust.toml index 6c1b8f2..a27a0b3 100644 --- a/Assets/Wallust/wallust.toml +++ b/Assets/Wallust/wallust.toml @@ -44,4 +44,4 @@ check_contrast = true # target: ABSOLUTE path in which to place a file with generated templated values. # ยก If either one is a directory, then both SHOULD be one. ! # zathura = { template = 'zathura', target = '~/.config/zathura/zathurarc' } -Noctalia = { template = 'noctalia.json', target = '~/.config/noctalia/Theme.json' } \ No newline at end of file +Noctalia = { template = 'noctalia.json', target = '~/.config/noctalia/theme.json' } \ No newline at end of file diff --git a/Services/Colors.qml b/Services/Colors.qml index be5ce2c..4507667 100644 --- a/Services/Colors.qml +++ b/Services/Colors.qml @@ -81,7 +81,7 @@ Singleton { property color overlay: "#191724" } - // Wallust theme colors (loaded from Theme.json) + // Wallust theme colors (loaded from theme.json) QtObject { id: wallustTheme @@ -115,7 +115,7 @@ Singleton { // FileView to load Wallust theme data from Theme.json FileView { id: wallustFile - path: Settings.configDir + "Theme.json" + path: Settings.configDir + "theme.json" watchChanges: true onFileChanged: reload() onAdapterUpdated: writeAdapter()