diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2025-12-29 22:22:48 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-04 12:46:59 +0100 |
| commit | d078db32723f94df43260afabf69bdd369d04403 (patch) | |
| tree | 790213a62d6e2d28fe0333461857151b4ca9f869 | |
| parent | 9f47269602cd0e07e93e3b35a00512c769bae10a (diff) | |
etc: guix-install.sh: Set XCURSOR_PATH to proper default value.
As can be seen in the Xcursor docs, the default path is
`~/.local/share/icons, ~/.icons, /usr/share/icons, /usr/share/pixmaps`,
zzz-guix.sh is currently missing the first two.
* etc/guix-install.sh (sys_create_init_profile): Add home paths to XCURSOR_PATH.
Change-Id: I4284d7648394c06b83e4eba91882b81c8a35d706
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Merges: #5231
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
| -rwxr-xr-x | etc/guix-install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/guix-install.sh b/etc/guix-install.sh index 014e30a6a36..c153cd1c28e 100755 --- a/etc/guix-install.sh +++ b/etc/guix-install.sh | |||
| @@ -777,7 +777,7 @@ sys_create_init_profile() | |||
| 777 | cat <<"EOF" > /etc/profile.d/zzz-guix.sh | 777 | cat <<"EOF" > /etc/profile.d/zzz-guix.sh |
| 778 | # Explicitly initialize XDG base directory variables to ease compatibility | 778 | # Explicitly initialize XDG base directory variables to ease compatibility |
| 779 | # with Guix System: see <https://issues.guix.gnu.org/56050#3>. | 779 | # with Guix System: see <https://issues.guix.gnu.org/56050#3>. |
| 780 | export XCURSOR_PATH="${XCURSOR_PATH:-/usr/local/share/icons:/usr/share/icons}" | 780 | export XCURSOR_PATH="${XCURSOR_PATH:-$HOME/.local/share/icons:$HOME/.icons:/usr/local/share/icons:/usr/share/icons}" |
| 781 | export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" | 781 | export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" |
| 782 | export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" | 782 | export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" |
| 783 | export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}" | 783 | export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}" |
