Better explain XDG vs default locations in docs
This commit is contained in:
parent
68412a1975
commit
2d3553531d
@ -9,9 +9,12 @@
|
|||||||
|
|
||||||
On Linux:
|
On Linux:
|
||||||
|
|
||||||
- `$XDG_CONFIG_HOME/mirage` or `~/.config/mirage` for config files
|
- `$XDG_CONFIG_HOME/mirage` if the `XDG_CONFIG_HOME` environment variable is
|
||||||
- `$XDG_DATA_HOME/mirage` or `~/.local/share/mirage` for user data
|
set, else `~/.config/mirage` for config files
|
||||||
- `$XDG_CACHE_HOME/mirage` or `~/.cache/mirage` for cache data
|
- `$XDG_DATA_HOME/mirage` if that variable is set, else `~/.local/share/mirage`
|
||||||
|
for user data
|
||||||
|
- `$XDG_CACHE_HOME/mirage` if that variable is set, else `~/.cache/mirage`
|
||||||
|
for cache data
|
||||||
|
|
||||||
For Flatpak installations:
|
For Flatpak installations:
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ class General:
|
|||||||
# Application theme to use.
|
# Application theme to use.
|
||||||
# Can be the name of a built-in theme (Mirage.qpl or Glass.qpl), or
|
# Can be the name of a built-in theme (Mirage.qpl or Glass.qpl), or
|
||||||
# the name (including extension) of a file in the user theme folder, which
|
# the name (including extension) of a file in the user theme folder, which
|
||||||
# is "$XDG_DATA_HOME/mirage/themes" or "~/.local/share/mirage/themes".
|
# is "$XDG_DATA_HOME/mirage/themes" if that environment variable is set,
|
||||||
|
# else "~/.local/share/mirage/themes".
|
||||||
# For Flatpak, it is
|
# For Flatpak, it is
|
||||||
# "~/.var/app/io.github.mirukana.mirage/data/mirage/themes".
|
# "~/.var/app/io.github.mirukana.mirage/data/mirage/themes".
|
||||||
theme: str = "Midnight.qpl"
|
theme: str = "Midnight.qpl"
|
||||||
|
Loading…
Reference in New Issue
Block a user