Files
Arch-R/packages/sysutils/systemd/scripts/environment-setup

17 lines
347 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
# read config files
for config in /etc/profile.d/*; do
2024-07-06 11:48:56 +02:00
if [ -f "$config" ]; then
. $config
fi
done
# generate system-wide environment file
2026-03-18 17:32:41 -03:00
cat <<EOF >/run/archr/environment
PATH=${PATH}
LD_LIBRARY_PATH=${LD_LIBRARY_PATH}
EOF