chiark / gitweb /
Import vtwm_5.4.7.orig.tar.gz
[vtwm.git] / contrib / vtwmrc / vtwmrc-parms
1
2 #
3 # DESCRIPTION FILE FOR vtwm - $(HOME)/vtwm/vtwmrc-parms
4 #
5 # PRE-PROCESSED BY vtwm-5.4.6 USING m4
6
7
8 #
9 # Parametered Variables
10 #
11
12 WarpCentered            "off"
13
14 # Lower this if PrettyZoom used (see 'Booleans')...
15 #Zoom                   150
16
17 # This spec works when (count * scale < phys_size) in each dimension.
18 # The size is then (phys_size * count / scale + bevel * 2) in each dimension.
19 # -- It's best if the window sizes work out to exact whole numbers --
20 #
21 # This window is (1024 * 5 / 16 + 1 * 2) x (768 * 1 / 16 + 1 * 2) = 322 x 50.
22 #
23 # Use one of these (LLC or LRC) if you want it titled...
24 #VirtualDesktop         "5x1+5-30" 16
25 #VirtualDesktop         "5x1+690+685" 16
26 # Use one of these (LLC or LRC) if not...
27 #VirtualDesktop         "5x1+5-10" 16
28 #VirtualDesktop         "5x1+690+705" 16
29 #
30 # Using m4, calculate coordinates for most common phys_size dimensions.
31 #
32 # Horizontal and vertical screen counts, desktop scale...
33 define(VDhoriz, 5) define(VDvert, 1) define(VDscale, 16)
34 # Calculate the window dimensions...
35 define(VDwidth, eval(WIDTH * VDhoriz / VDscale + (WMdesktopbevel * 2 + WMborder * 2)))
36 define(VDheight, eval(HEIGHT * VDvert / VDscale + (WMdesktopbevel * 2 + WMborder * 2 + WMdesktoptitle)))
37 # Calculate the window coordinates (this is for LRC)...
38 define(VDx, eval(WIDTH - (VDwidth + WMpanborder)))
39 define(VDy, eval(HEIGHT - (VDheight + WMpanborder)))
40 # Translate to an X geometry string (set VDx to WMpanborder for LLC)...
41 define(VDgeometry, translit(VDhoriz*VDvert+VDx+VDy, *, x))
42 # Set the resource...
43 VirtualDesktop          "VDgeometry" VDscale
44
45 PanDistanceX            100
46 PanDistanceY            100
47 PanResistance           750
48 AutoPan                 100
49 # Nice if 'NaturalAutoPanBehavior' is not used...
50 #AutoPanExtraWarp       30
51
52 MoveDelta               10
53
54 BorderWidth             WMborder
55 AutoPanBorderWidth      WMpanborder
56
57 # Windows are snappier if 'NoBackingStore' is not used when this is...
58 RaiseDelay              80
59
60 XorValue                65535
61
62 ResizeRegion            "NorthEast"
63
64 # Ignore the Caps, Num, and Scroll lock states...
65 IgnoreModifiers         l | m2 | m5
66