You are not logged in.
I want to create a personalized theme in syslinux, so i searched for a way to preview the theme and some examples. But I can't find any themes of syslinux!
Or maybe I'm blind... O.o
Thanks for your time!
Bye
Last edited by Dorian_Hawkmoon (2013-11-11 17:53:38)
Offline
What exactly are you looking for? With vesamenu you just use a png file and define a menu if you want one.
Have you been to the syslinux wiki?
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
I have vesamenu working and I have the arch's graphical menu.
I see all what I need to change the menu here, but it's my first time and it is a little complicated for me, so i'm looking for examples like your link, but where is the .cfg to see the code. That is what I'm looking for, the code of .cfg.
I hope if I can find some themes of syslinux, I will find the .cfg config
Offline
Code comments stripped for brevity
splash.png is located in /boot/syslinux and is (native) 1600 x 900
# Config file for Syslinux -
# /boot/syslinux/syslinux.cfg
DEFAULT arch
PROMPT 0 # Set to 1 if you always want to display the boot: prompt
TIMEOUT 50
UI vesamenu.c32
MENU TITLE Arch Linux
MENU RESOLUTION 1600 900
MENU BACKGROUND splash.png
MENU COLOR border 30;44 #40ffffff #a0000000 std
MENU COLOR title 1;36;44 #9033ccff #a0000000 std
MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
MENU COLOR unsel 37;44 #50ffffff #a0000000 std
MENU COLOR help 37;40 #c0ffffff #a0000000 std
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
MENU COLOR msg07 37;40 #90ffffff #a0000000 std
MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
LABEL arch
MENU LABEL Arch Linux x64
LINUX ../vmlinuz-linux
APPEND root=/dev/sda2 rw vga=895
INITRD ../initramfs-linux.img
LABEL archfallback
MENU LABEL Arch Linux x64 Fallback
LINUX ../vmlinuz-linux
APPEND root=/dev/sda2 rw
INITRD ../initramfs-linux-fallback.img
LABEL windows
MENU LABEL Windows 7 Pro
COM32 chain.c32
APPEND hd0 1
LABEL hdt
MENU LABEL HDT (Hardware Detection Tool)
COM32 hdt.c32
LABEL reboot
MENU LABEL Reboot
COM32 reboot.c32
LABEL off
MENU LABEL Power Off
COMBOOT poweroff.com
Offline