Add console tools and bee menu startup
This commit is contained in:
@@ -17,11 +17,14 @@ qemu-guest-agent
|
|||||||
openssh-server
|
openssh-server
|
||||||
|
|
||||||
# Utilities
|
# Utilities
|
||||||
|
bash
|
||||||
procps
|
procps
|
||||||
lsof
|
lsof
|
||||||
file
|
file
|
||||||
less
|
less
|
||||||
vim-tiny
|
vim-tiny
|
||||||
|
mc
|
||||||
|
htop
|
||||||
sudo
|
sudo
|
||||||
zstd
|
zstd
|
||||||
|
|
||||||
|
|||||||
13
iso/overlay/home/bee/.profile
Normal file
13
iso/overlay/home/bee/.profile
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
export PATH="/usr/local/bin:$PATH"
|
||||||
|
|
||||||
|
if [ -z "${SSH_CONNECTION:-}" ] \
|
||||||
|
&& [ -z "${SSH_TTY:-}" ] \
|
||||||
|
&& [ "$(tty 2>/dev/null)" = "/dev/tty1" ]; then
|
||||||
|
if command -v menu >/dev/null 2>&1; then
|
||||||
|
menu
|
||||||
|
elif [ -x /usr/local/bin/bee-tui ]; then
|
||||||
|
/usr/local/bin/bee-tui
|
||||||
|
else
|
||||||
|
echo "Bee menu is unavailable."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user