mirror of
https://github.com/jpochyla/psst.git
synced 2026-04-27 07:25:52 +03:00
[GH-ISSUE #522] Cache location change option #316
Labels
No labels
api
bug
build
documentation
duplicate
enhancement
good first issue
help wanted
idea
invalid
linux
lowprio
macos
pull-request
upstream
windows
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/psst#316
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kobiazaria on GitHub (Sep 7, 2024).
Original GitHub issue: https://github.com/jpochyla/psst/issues/522
Describe the solution you'd like
I am using all of my temp files and cache files on HDD's rather than SSD or C disk in my case.
Describe alternatives you've considered
I'd like an option to change the program's cache location rather than default of %APPDATA% folder.
@SO9010 commented on GitHub (Nov 18, 2024):
Starting to have a look now.
@jacksongoode commented on GitHub (Nov 18, 2024):
I think we could enable this pretty easy, the tricky bit might be making sure the migration works well.
@SO9010 commented on GitHub (Nov 18, 2024):
Yes I agree I had a bit of time to start trying to implement it earlier, but didn't get far so if you want to start it I'm happy to work on that!
@Self-Perfection commented on GitHub (Nov 26, 2024):
FWIW psst respects $XDG_CACHE_HOME env var.
Thus it is possible to change cache location on GNU/Linux by running it like this:
XDG_CACHE_HOME=/some/dir psst-guiUnfortunately this approach leads to duplication of fontconfig cache.
Or just symlink the cache to desired location:
Windows supports symlinks as well as MacOS / Linux, but I do not know how to create them on Windows.
@SO9010 commented on GitHub (Jan 30, 2025):
@jacksongoode just realised this is a duplicate of #156.