mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-06-25 02:00:36 -04:00
11 lines
382 B
Bash
Executable file
11 lines
382 B
Bash
Executable file
#!/bin/sh
|
|
|
|
## Copyright (C) 2019 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
if [ -z "$XDG_CONFIG_DIRS" ]; then
|
|
XDG_CONFIG_DIRS="/etc/xdg"
|
|
fi
|
|
if ! printf '%s\n' "$XDG_CONFIG_DIRS" | grep -- "/usr/share/security-misc/" >/dev/null 2>/dev/null ; then
|
|
export XDG_CONFIG_DIRS="/usr/share/security-misc/:$XDG_CONFIG_DIRS"
|
|
fi
|