Drop obsolete muttng from /etc/skel/.fluxbox/menu and /etc/skel/.pekwm/menu, thanks...
[grml-desktop.git] / etc / skel / .ion2 / pwm.lua
1 --
2 -- PWM main configuration file
3 --
4
5 -- Set default modifier. Alt should usually be mapped to Mod1 on
6 -- XFree86-based systems. The flying window keys are probably Mod3
7 -- or Mod4; see the output of 'xmodmap'.
8 DEFAULT_MOD = "Mod1+"
9
10 -- Set default workspace type.
11 default_ws_type="WFloatWS"
12
13 -- Maximum delay between clicks in milliseconds to be considered a
14 -- double click.
15 --set_dblclick_delay(250)
16
17 -- For keyboard resize, time (in milliseconds) to wait after latest
18 -- key press before automatically leaving resize mode (and doing
19 -- the resize in case of non-opaque move).
20 --set_resize_delay(1500)
21
22 -- Opaque resize?
23 enable_opaque_resize(false)
24
25 -- Movement commands warp the pointer to frames instead of just
26 -- changing focus. Enabled by default.
27 enable_warp(false)
28
29 -- Kludges to make apps behave better.
30 include("kludges")
31
32 -- Make some bindings.
33 include("pwm-bindings")
34
35 -- Define some menus (menu module required to actually use them)
36 include("pwm-menus")
37
38 -- How to shorten window titles when the full title doesn't fit in
39 -- the available space? The first-defined matching rule that succeeds 
40 -- in making the title short enough is used.
41 add_shortenrule("(.*) - Mozilla(<[0-9]+>)", "$1$2$|$1$<...$2")
42 add_shortenrule("(.*) - Mozilla", "$1$|$1$<...")
43 add_shortenrule("XMMS - (.*)", "$1$|...$>$1")
44 add_shortenrule("[^:]+: (.*)(<[0-9]+>)", "$1$2$|$1$<...$2")
45 add_shortenrule("[^:]+: (.*)", "$1$|$1$<...")
46 add_shortenrule("(.*)(<[0-9]+>)", "$1$2$|$1$<...$2")
47 add_shortenrule("(.*)", "$1$|$1$<...")
48
49 -- List of directories to look for manuals in the F1 man page query.
50 query_man_path={
51     "/usr/man",
52     "/usr/share/man",
53     "/usr/X11R6/man",
54     "/usr/local/man"
55 }
56
57 -- Modules.
58 load_module("floatws")
59 load_module("menu")
60 --load_module("query")
61 load_module("dock")