From 4b221e2fd5b7faf4747cff6c590b6ddc38870901 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 14 Sep 2025 16:59:19 +1000 Subject: utilities: add recording control --- utils/Paths.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'utils/Paths.qml') diff --git a/utils/Paths.qml b/utils/Paths.qml index f0dfa4d..5135910 100644 --- a/utils/Paths.qml +++ b/utils/Paths.qml @@ -9,6 +9,7 @@ Singleton { readonly property string home: Quickshell.env("HOME") readonly property string pictures: Quickshell.env("XDG_PICTURES_DIR") || `${home}/Pictures` + readonly property string videos: Quickshell.env("XDG_VIDEOS_DIR") || `${home}/Videos` readonly property string data: `${Quickshell.env("XDG_DATA_HOME") || `${home}/.local/share`}/caelestia` readonly property string state: `${Quickshell.env("XDG_STATE_HOME") || `${home}/.local/state`}/caelestia` @@ -17,6 +18,7 @@ Singleton { readonly property string imagecache: `${cache}/imagecache` 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 { -- cgit v1.2.3-freya