2010-10-17 15:43:09 +03:00
|
|
|
#!/bin/sh
|
2010-11-13 11:56:18 +02:00
|
|
|
|
2010-11-17 10:09:07 +02:00
|
|
|
source /etc/profile
|
2010-11-13 11:56:18 +02:00
|
|
|
|
2012-10-14 11:07:05 +03:00
|
|
|
#Use Nanonote-specific 6x10 font. This font is very clear, but can't display colors
|
|
|
|
#This results in 53x24 terminal size
|
2011-05-31 04:01:16 +03:00
|
|
|
#setfont2 /usr/share/setfont2/un-fuzzy-6x10-font.pnm
|
2012-10-14 11:07:05 +03:00
|
|
|
# This is to display line drawing glyphs correctly (the font itself doesn't contain this information)
|
2011-05-31 04:01:16 +03:00
|
|
|
#loadunimap /usr/share/setfont2/ben_uni.trans
|
2011-01-28 09:25:54 +02:00
|
|
|
|
2012-10-14 11:07:05 +03:00
|
|
|
#Or use standard 6x11 font (supporting colors)
|
|
|
|
#This results in 53x21 terminal size
|
|
|
|
#setfont /usr/share/kbd/consolefonts/kernel-6x11-font
|
|
|
|
|
|
|
|
#Some people prefer terminus font (supports colors and more glyphs)
|
|
|
|
#This results in 53x20 terminal size
|
|
|
|
#setfont /usr/share/kbd/consolefonts/ter-v12n.psf
|
|
|
|
|
|
|
|
#We use 6x10 font by default (forked from standard 6x11)
|
|
|
|
#This results in 53x24 terminal size
|
|
|
|
setfont /usr/share/kbd/consolefonts/kernel-6x10-font
|
2011-05-27 16:41:12 +03:00
|
|
|
|
2011-08-17 05:09:28 +03:00
|
|
|
trap "" hup
|
|
|
|
|
2011-05-27 16:41:12 +03:00
|
|
|
clear
|
2011-08-17 05:09:28 +03:00
|
|
|
exec /usr/bin/gmenu2x.bin
|