diff --git a/iso/builder/config/package-lists/bee.list.chroot b/iso/builder/config/package-lists/bee.list.chroot index b4bb67b..54d33c8 100644 --- a/iso/builder/config/package-lists/bee.list.chroot +++ b/iso/builder/config/package-lists/bee.list.chroot @@ -17,11 +17,14 @@ qemu-guest-agent openssh-server # Utilities +bash procps lsof file less vim-tiny +mc +htop sudo zstd diff --git a/iso/overlay/home/bee/.profile b/iso/overlay/home/bee/.profile new file mode 100644 index 0000000..e55c636 --- /dev/null +++ b/iso/overlay/home/bee/.profile @@ -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