diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-09 19:53:59 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-09 19:53:59 -0500 |
| commit | 9c6aea03b58ead9044184724613ea1baa2a3cd35 (patch) | |
| tree | 982e19a91803cc2842a11fecd272800af373fa43 /utils | |
| parent | len :3 (diff) | |
| download | caelestia-shell-9c6aea03b58ead9044184724613ea1baa2a3cd35.tar.gz caelestia-shell-9c6aea03b58ead9044184724613ea1baa2a3cd35.tar.bz2 caelestia-shell-9c6aea03b58ead9044184724613ea1baa2a3cd35.zip | |
remove more things, make lock screen use wallpaper not screenshot
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/Images.qml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/utils/Images.qml b/utils/Images.qml deleted file mode 100644 index ac76f51..0000000 --- a/utils/Images.qml +++ /dev/null @@ -1,12 +0,0 @@ -pragma Singleton - -import Quickshell - -Singleton { - readonly property list<string> validImageTypes: ["jpeg", "png", "webp", "tiff", "svg"] - readonly property list<string> validImageExtensions: ["jpg", "jpeg", "png", "webp", "tif", "tiff", "svg"] - - function isValidImageByName(name: string): bool { - return validImageExtensions.some(t => name.endsWith(`.${t}`)); - } -} |