wok annotate svkbd/stuff/config.def.h @ rev 25706

BootProg/boot32.asm: add int 21h services 02h, 09h, 25h, 35h
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 17:36:15 2024 +0000 (5 days ago)
parents f763320a92ed
children
rev   line source
pankso@16427 1 static const Bool wmborder = True;
Hans-G?nter@25338 2 static int fontsize = 22;
Hans-G?nter@25338 3 static double overlay_delay = 1.0; //in seconds
Hans-G?nter@25338 4 static double repeat_delay = 0.75; //in seconds, will not work on keys with overlays
Hans-G?nter@25338 5 static int scan_rate = 50; //scan rate in microseconds, affects key repetition rate
Hans-G?nter@25338 6 static int heightfactor = 14; //one row of keys takes up 1/x of the screen height
Hans-G?nter@25338 7 static int xspacing = 5;
Hans-G?nter@25338 8 static int yspacing = 5;
Hans-G?nter@25338 9 static const char *defaultfonts[] = {
Hans-G?nter@25338 10 "DejaVu Sans:bold:size=22"
Hans-G?nter@25338 11 };
Hans-G?nter@25338 12 static const char *defaultcolors[SchemeLast][2] = {
Hans-G?nter@25338 13 /* fg bg */
Hans-G?nter@25338 14 [SchemeNorm] = { "#000000", "#dfdfdf" },
Hans-G?nter@25338 15 [SchemeNormShift] = { "#008ac0", "#132a33" },
Hans-G?nter@25338 16 [SchemeNormABC] = { "#ffffff", "#14313d" },
Hans-G?nter@25338 17 [SchemeNormABCShift] = { "#008ac0", "#14313d" },
Hans-G?nter@25338 18 [SchemePress] = { "#ffffff", "#111111" },
Hans-G?nter@25338 19 [SchemePressShift] = { "#00c001", "#259937" },
Hans-G?nter@25338 20 [SchemeHighlight] = { "#ffffff", "#111111" },
Hans-G?nter@25338 21 [SchemeHighlightShift] = { "#008ac0", "#005577" },
Hans-G?nter@25338 22 [SchemeOverlay] = { "#ffffff", "#2b3313" },
Hans-G?nter@25338 23 [SchemeOverlayShift] = { "#008ac0", "#2b3313" },
Hans-G?nter@25338 24 [SchemeWindow] = { "#bbbbbb", "#132a33" },
Hans-G?nter@25338 25 };
pankso@16427 26
Hans-G?nter@25338 27 /* static const char font[] = "-misc-fixed-medium-r-semicondensed--0-0-75-75-c-0-iso8859-1"; */
Hans-G?nter@25338 28