diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-08 16:26:49 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-08 16:26:49 -0500 |
| commit | 5581a4b34f7ef70005a26e2b955df33414533791 (patch) | |
| tree | fc8a46997292aa9632216c1c904deb3858fd19c0 /utils | |
| parent | only support one color scheme (diff) | |
| download | caelestia-shell-5581a4b34f7ef70005a26e2b955df33414533791.tar.gz caelestia-shell-5581a4b34f7ef70005a26e2b955df33414533791.tar.bz2 caelestia-shell-5581a4b34f7ef70005a26e2b955df33414533791.zip | |
remove recording
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/Icons.qml | 3 | ||||
| -rw-r--r-- | utils/Paths.qml | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/utils/Icons.qml b/utils/Icons.qml index c06cbf8..50b0592 100644 --- a/utils/Icons.qml +++ b/utils/Icons.qml @@ -52,7 +52,6 @@ Singleton { Audio: "music_note", Music: "music_note", Player: "music_note", - Recorder: "mic", Game: "sports_esports", FileTools: "files", FileManager: "files", @@ -144,8 +143,6 @@ Singleton { summary = summary.toLowerCase(); if (summary.includes("reboot")) return "restart_alt"; - if (summary.includes("recording")) - return "screen_record"; if (summary.includes("battery")) return "power"; if (summary.includes("screenshot")) diff --git a/utils/Paths.qml b/utils/Paths.qml index f95134f..5c8cb68 100644 --- a/utils/Paths.qml +++ b/utils/Paths.qml @@ -19,7 +19,6 @@ Singleton { readonly property string imagecache: `${cache}/imagecache` readonly property string notifimagecache: `${imagecache}/notifs` readonly property string wallsdir: Quickshell.env("CAELESTIA_WALLPAPERS_DIR") || absolutePath(Config.paths.wallpaperDir) - readonly property string recsdir: Quickshell.env("CAELESTIA_RECORDINGS_DIR") || `${videos}/Recordings` readonly property string libdir: Quickshell.env("CAELESTIA_LIB_DIR") || "/usr/lib/caelestia" function toLocalFile(path: url): string { |