summaryrefslogtreecommitdiff
path: root/utils/Images.qml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-09 19:53:59 -0500
committerFreya Murphy <freya@freyacat.org>2026-03-16 09:26:49 -0400
commitc3894de0032390c09ddd28c8c2bf3b3bd9f5b4e9 (patch)
tree65f321bcfc3ac27664e25f351fcc61908cea5a21 /utils/Images.qml
parentlen :3 (diff)
downloadcaelestia-shell-c3894de0032390c09ddd28c8c2bf3b3bd9f5b4e9.tar.gz
caelestia-shell-c3894de0032390c09ddd28c8c2bf3b3bd9f5b4e9.tar.bz2
caelestia-shell-c3894de0032390c09ddd28c8c2bf3b3bd9f5b4e9.zip
remove more things, make lock screen use wallpaper not screenshot
Diffstat (limited to '')
-rw-r--r--utils/Images.qml12
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}`));
- }
-}