diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-30 22:30:34 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-30 22:30:34 +1000 |
| commit | 9659130fdbf33b3428e3b5753f447ec61993e01c (patch) | |
| tree | 5a8129eb893eb01392f0922956984b3053759b54 /modules/launcher/ContentList.qml | |
| parent | readme/install: explain different aur packages (diff) | |
| download | caelestia-shell-9659130fdbf33b3428e3b5753f447ec61993e01c.tar.gz caelestia-shell-9659130fdbf33b3428e3b5753f447ec61993e01c.tar.bz2 caelestia-shell-9659130fdbf33b3428e3b5753f447ec61993e01c.zip | |
wallpapers: use CAELESTIA_WALLPAPERS_DIR env
Env var overrides config option
Diffstat (limited to 'modules/launcher/ContentList.qml')
| -rw-r--r-- | modules/launcher/ContentList.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml index 2eaa515..41f6a6a 100644 --- a/modules/launcher/ContentList.qml +++ b/modules/launcher/ContentList.qml @@ -137,7 +137,7 @@ Item { } StyledText { - text: root.state === "wallpapers" && Wallpapers.list.length === 0 ? qsTr("Try putting some wallpapers in %1").arg(Paths.shortenHome(Config.paths.wallpaperDir)) : qsTr("Try searching for something else") + text: root.state === "wallpapers" && Wallpapers.list.length === 0 ? qsTr("Try putting some wallpapers in %1").arg(Paths.shortenHome(Paths.wallsdir)) : qsTr("Try searching for something else") color: Colours.palette.m3onSurfaceVariant font.pointSize: Appearance.font.size.normal } |