source: pkg/main/distro-defaults/trunk/config @ 1417

Revision 1417, 2.8 KB checked in by alanbach-guest, 6 years ago (diff)

distro-defaults updates

Line 
1#
2# This files tells the console-tools package:
3#
4# - whether to load a specific font and boot (and maybe a screen-font map,
5# but you should avoid that if possible).
6# - whether to setup an Application-Charset Map other than the default CP437.
7# - whether to start "vcstime" to have time on all text VC'S.
8#
9# You can also specify per-VC settings by suffixing variable names as in
10# the examples below. This only works on framebuffer devices.
11#
12# CAVEATS:
13#
14# - When using the new framebuffer devices, the "global setting" for a font
15# only affects the current console (ie., at boot-time, the first one)
16# - ACM setting involves 2 steps (maybe loading a user ACM, and activating
17# it on a given charset slot - see charset(1) for details), the 1st of which
18# affects the entire system, but the 2nd of which only affects the current
19# VC (ie., at boot-time, the first one).  So that if you want to use the same
20# ACM on all VCs, you have to specify "APP_CHARSET_MAP_vc<N>=user" for all
21# relevant values of <N>.
22#
23# Example:
24#
25#SCREEN_FONT=iso01.f16
26#SCREEN_FONT_vc2=LatArCyrHeb-16
27SCREEN_FONT=Uni3-Terminus16
28#
29#APP_CHARSET_MAP=iso05
30#APP_CHARSET_MAP_vc2=user
31#
32# Set the following - more euro-friendly default than kernel font.
33# SCREEN_FONT=latcyrheb=sun16.psf
34
35#DO_VCSTIME=yes
36#
37# Forget this one unless you _know_ it is necessary for your font:
38#SCREEN_FONT_MAP=iso01
39
40#  **** screen saver/DPMS settings: all VCs ****
41# These settings are commented by default to avoid the chance of damage to
42# very old monitors that don't support DPMS signalling.
43
44# screen blanking timeout.  monitor remains on, but the screen is cleared to
45# range: 0-60 min (0==never)  kernels I've looked at default to 10 minutes.
46# (see linux/drivers/char/console.c)
47BLANK_TIME=30
48
49# blanking method (VESA DPMS mode to use after BLANK_TIME, before powerdown):
50# on: the default, no DPMS signalling. near instant powerup, no power saving
51# vsync: DPMS Standby mode. nearly instant recovery, uses 110/120W (17" screen)
52# hsync: DPMS Suspend mode. typically 3s recovery, uses 15/120W (17" screen)
53# powerdown,off: DPMS Off mode, typ. 10s recovery, uses  5/120W (17" screen)
54
55# Those values are for my 17" Mag, but some monitors do suspend the same as
56# standby.  xset dpms force {off|standby|suspend|on} is useful for this, if X
57# supports DPMS on your video card.  Set X's DPMS screensaver with xset dpms
58# or use option power_saver in XF86Config
59#
60# DPMS set by default to on, because hsync can cause problems on certain
61# hardware, such as Armada E500 laptops
62BLANK_DPMS=off
63
64# Powerdown time.  The console will go to DPMS Off mode POWERDOWN_TIME
65# minutes _after_ blanking.  (POWERDOWN_TIME + BLANK_TIME after the last input)
66POWERDOWN_TIME=30
67
68# rate and delay can get only specific values, consult kbdrate(1) for help
69#KEYBOARD_RATE="30"
70#KEYBOARD_DELAY="250"
71
72# Turn on numlock by defalt
73#LEDS=+num
Note: See TracBrowser for help on using the repository browser.