distribution/packages/sysutils/busybox/profile.d/98-busybox.conf
fewtarius 609de5f8e8
* Terminal bug fix (reverts the xterm change).
* Update emulators and cores.
* Adds fake08, thanks to Lakka-LibreELEC.
* Adds GPU power saving option for handheld builds.
* Updates SDL2, reverts Mesa (may be temporary).
* Improves fan curve for supported devices.
2022-12-20 19:29:08 -05:00

24 lines
486 B
Text

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2021-present Fewtarius
. /etc/os-release
export HOME="/storage"
export PATH="/usr/bin:/usr/sbin"
export HOSTNAME=`cat /etc/hostname`
export PS1='\e[1;30m\h:\e[1;30m\w \e[0m\$ \e[0m'
# Redirect requests for sudo to nowhere.
alias sudo=''
case "$TERM" in
linux|nxterm|screen)
;;
"")
export TERM="linux"
;;
*)
export TERM="xterm"
;;
esac