You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ventoy/LiveCDGUI/VTOY/autostart

30 lines
797 B
Bash

#!/bin/sh
hsetroot -fill /usr/share/wallpapers/wallpaper.png
INIFILE=/ventoy/Ventoy2Disk.ini
echo "[Ventoy]" >> $INIFILE
echo "Language=Chinese Simplified (简体中文)" >> $INIFILE
echo "PartStyle=0" >> $INIFILE
echo "ShowAllDevice=0" >> $INIFILE
VTOOLDIR=/ventoy/tool/x86_64
ls -1 $VTOOLDIR/ | grep '\.xz$' | while read line; do
$VTOOLDIR/xzcat $VTOOLDIR/$line > $VTOOLDIR/${line%.xz}
rm -f $VTOOLDIR/$line
chmod +x $VTOOLDIR/${line%.xz}
done
cp -a $VTOOLDIR/mount.exfat-fuse /bin/mount.exfat
cp -a $VTOOLDIR/mkexfatfs /bin/mkfs.exfat
/usr/local/sbin/busybox --install /usr/local/sbin/
tar xf /usr/local/sbin/ntfs-3g.tar.gz -C /
/ventoy/tool/x86_64/Ventoy2Disk.gtk3 --kiosk
reboot -f