1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#
# Choose-OS 0.81 example configuration file.
#
#
# Traditional (version <= 0.41) lookalike interface.
#
#############################################################################
# Do we wanna use a cooler color instead of light gray ? yeah.
#
color=white
# Wanna have another selection color ? yeah.
#
selection=cyan
# Set a cooler banner? yeah.
#
banner=Whatcha wanna do today?
# Wanna see copyright 'n keyhelp ?? (Set this to off if U don't.)
#
infoline=on
#
# General stuff
#
#############################################################################
# wait 60 secs before bootin' the first image
#
delay=60
# Install the boot sector on /dev/hda (makes it MBR).
#
install=/dev/hda
# Want emergency boot sector ?
#
#emergency=/dev/hda1
#
# Next are the boot images...
#
#############################################################################
# a Linux kernel image
#
linux "Linux" {
image=/vmlinuz
cmdline=vga=EXTENDED
color=blue
}
# a DOS bootsector
#
bootsect "DOS" {
image=/dev/hda1
color=lightblue
}
|