You are not logged in.

#1 2013-11-10 23:20:43

Dorian_Hawkmoon
Member
Registered: 2013-09-01
Posts: 18

Where can I find themes for Syslinux

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

#2 2013-11-10 23:24:54

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,452
Website

Re: Where can I find themes for Syslinux

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

#3 2013-11-11 15:46:52

Dorian_Hawkmoon
Member
Registered: 2013-09-01
Posts: 18

Re: Where can I find themes for Syslinux

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

#4 2013-11-12 09:14:31

satanselbow
Member
Registered: 2011-06-15
Posts: 538

Re: Where can I find themes for Syslinux

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

Board footer

Powered by FluxBB