windvn/mods/live-installer/data/bin/login

42 lines
697 B
Plaintext
Raw Normal View History

2022-08-10 16:34:29 +00:00
#!/bin/bash
export PATH="/sbin:/usr/sbin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
export HOME="/root"
2022-08-10 16:34:29 +00:00
CHOICE=1
2022-11-07 22:20:05 +00:00
dpkg-reconfigure keyboard-configuration
service console-setup.sh restart
udevadm trigger --subsystem-match=input --action=change
service keyboard-setup.sh restart
clear
2022-11-07 22:20:05 +00:00
2022-08-10 16:34:29 +00:00
while true; do
2022-11-07 22:20:05 +00:00
echo ""
2022-08-10 16:34:29 +00:00
echo "Welcome to windvn!"
echo "1: Install"
2022-08-10 16:34:29 +00:00
echo "2: Open bash"
2022-09-21 09:38:37 +00:00
echo "3: Reboot"
echo "4: Shut down"
2022-08-10 16:34:29 +00:00
read -p "Choice: " CHOICE
echo ""
if [ "$CHOICE" == "1" ]; then
/opt/wdvn/installer/main
2022-08-10 16:34:29 +00:00
fi
if [ "$CHOICE" == "2" ]; then
bash
fi
if [ "$CHOICE" == "3" ]; then
2022-09-21 09:38:37 +00:00
reboot
exit
fi
if [ "$CHOICE" == "4" ]; then
2022-08-10 16:34:29 +00:00
poweroff
exit
fi
echo ""
done