diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-14 16:59:19 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-14 16:59:19 +1000 |
| commit | 4b221e2fd5b7faf4747cff6c590b6ddc38870901 (patch) | |
| tree | 3041635aa0e94a7783410ccf76424143060fa605 /utils | |
| parent | internal: close panels when fullscreen app (diff) | |
| download | caelestia-shell-4b221e2fd5b7faf4747cff6c590b6ddc38870901.tar.gz caelestia-shell-4b221e2fd5b7faf4747cff6c590b6ddc38870901.tar.bz2 caelestia-shell-4b221e2fd5b7faf4747cff6c590b6ddc38870901.zip | |
utilities: add recording control
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/Paths.qml | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |