]> git.decadent.org.uk Git - ion3.git/blob - etc/cfg_ion.lua
[svn-inject] Installing original source of ion3
[ion3.git] / etc / cfg_ion.lua
1 --
2 -- Ion main configuration file
3 --
4 -- This file only includes some settings that are rather frequently altered.
5 -- The rest of the settings are in cfg_ioncore.lua and individual modules'
6 -- configuration files (cfg_modulename.lua).
7 --
8
9 -- Set default modifiers. Alt should usually be mapped to Mod1 on
10 -- XFree86-based systems. The flying window keys are probably Mod3
11 -- or Mod4; see the output of 'xmodmap'.
12 --META="Mod1+"
13 --ALTMETA=""
14
15 -- Terminal emulator
16 --XTERM="xterm"
17
18 -- Some basic settings
19 ioncore.set{
20     -- Maximum delay between clicks in milliseconds to be considered a
21     -- double click.
22     --dblclick_delay=250,
23
24     -- For keyboard resize, time (in milliseconds) to wait after latest
25     -- key press before automatically leaving resize mode (and doing
26     -- the resize in case of non-opaque move).
27     --kbresize_delay=1500,
28
29     -- Opaque resize?
30     --opaque_resize=false,
31
32     -- Movement commands warp the pointer to frames instead of just
33     -- changing focus. Enabled by default.
34     --warp=true,
35 }
36
37 -- cfg_ioncore contains configuration of the Ion 'core'
38 dopath("cfg_ioncore")
39
40 -- Load some kludges to make apps behave better.
41 dopath("cfg_kludges")
42
43 -- Load some modules. Disable the loading of cfg_modules by commenting out 
44 -- the corresponding line with -- if you don't want the whole default set 
45 -- (everything except mod_dock). Then uncomment the lines for the modules
46 -- you want. 
47 dopath("cfg_modules")
48 --dopath("mod_query")
49 --dopath("mod_menu")
50 --dopath("mod_tiling")
51 --dopath("mod_statusbar")
52 --dopath("mod_dock")
53 --dopath("mod_sp")
54
55 -- Deprecated.
56 dopath("cfg_user", true)