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