diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 02:11:10 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 02:11:10 +1000 |
| commit | b805f8d67725352817d248562683cb90bf314401 (patch) | |
| tree | 511edf471c11e7b99b0cb4ea43ad275f339c18cc /src/caelestia/utils/paths.py | |
| parent | wallpaper: fix when no wall (diff) | |
| download | caelestia-cli-b805f8d67725352817d248562683cb90bf314401.tar.gz caelestia-cli-b805f8d67725352817d248562683cb90bf314401.tar.bz2 caelestia-cli-b805f8d67725352817d248562683cb90bf314401.zip | |
feat: impl recording subcommand
Diffstat (limited to 'src/caelestia/utils/paths.py')
| -rw-r--r-- | src/caelestia/utils/paths.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/caelestia/utils/paths.py b/src/caelestia/utils/paths.py index 6a98dae..a4ef36f 100644 --- a/src/caelestia/utils/paths.py +++ b/src/caelestia/utils/paths.py @@ -31,6 +31,10 @@ wallpapers_cache_dir = c_cache_dir / "wallpapers" screenshots_dir = Path.home() / "Pictures/Screenshots" screenshots_cache_dir = c_cache_dir / "screenshots" +recordings_dir = Path.home() / "Videos/Recordings" +recording_path = c_state_dir / "record/recording.mp4" +recording_notif_path = c_state_dir / "record/notifid.txt" + def compute_hash(path: Path | str) -> str: sha = hashlib.sha256() |