Co-developed-by: Aster Boese <asterboese@mailbox.org> [ci:skip-build]: already built successfully in CI
11 lines
460 B
Bash
11 lines
460 B
Bash
#!/bin/sh
|
|
|
|
# Lomiri doesn't set XDG variables automatically, so we do it here.
|
|
|
|
export XDG_CONFIG_HOME="${HOME}/.config"
|
|
export XDG_CACHE_HOME="${HOME}/.cache"
|
|
export XDG_DATA_HOME="${HOME}/.local/share"
|
|
export XDG_STATE_HOME="${HOME}/.local/state"
|
|
export XDG_DATA_DIRS="${HOME}/.local/share/:${HOME}/.local/share/flatpak/exports/share/:/var/lib/flatpak/exports/share/:/usr/local/share/:/usr/share/"
|
|
XDG_RUNTIME_DIR="/run/user/$(id -u)"
|
|
export XDG_RUNTIME_DIR
|