mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-12-29 00:23:24 -05:00
14 lines
387 B
Plaintext
14 lines
387 B
Plaintext
|
#!/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
|
||
|
|
||
|
/ventoy/tool/x86_64/Ventoy2Disk.gtk3 --kiosk
|
||
|
|