[UP] change update interval.
[arrow.git] / archlinux_conf / etc / ion3 / cfg_ion.lua
blobd051a2bcd2a8e5fbb2464caa10e8381c297327e6
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 -- When any binding and other customisations that you want are minor, it is
9 -- recommended that you include them in a copy of this file in ~/.ion3/.
10 -- Simply create or copy the relevant settings at the end of this file (from
11 -- the other files), recalling that a key can be unbound by passing 'nil'
12 -- (without the quotes) as the callback. For more information, please see
13 -- the Ion configuration manual available from the Ion Web page.
16 -- Set default modifiers. Alt should usually be mapped to Mod1 on
17 -- XFree86-based systems. The flying window keys are probably Mod3
18 -- or Mod4; see the output of 'xmodmap'.
19 --META="Mod1+"
20 META="Mod4+"
21 --ALTMETA=""
23 -- Terminal emulator
24 --XTERM="arxvt"
26 -- Some basic settings
27 ioncore.set{
28 -- Maximum delay between clicks in milliseconds to be considered a
29 -- double click.
30 --dblclick_delay=250,
32 -- For keyboard resize, time (in milliseconds) to wait after latest
33 -- key press before automatically leaving resize mode (and doing
34 -- the resize in case of non-opaque move).
35 --kbresize_delay=1500,
37 -- Opaque resize?
38 --opaque_resize=false,
40 -- Movement commands warp the pointer to frames instead of just
41 -- changing focus. Enabled by default.
42 --warp=true,
44 -- Switch frames to display newly mapped windows
45 --switchto=true,
47 -- Default index for windows in frames: one of 'last', 'next' (for
48 -- after current), or 'next-act' (for after current and anything with
49 -- activity right after it).
50 --frame_default_index='next',
52 -- Auto-unsqueeze transients/menus/queries.
53 --unsqueeze=true,
55 -- Display notification tooltips for activity on hidden workspace.
56 --screen_notify=true,
60 -- Load default settings. The file cfg_defaults loads all the files
61 -- commented out below, except mod_dock. If you do not want to load
62 -- something, comment out this line, and uncomment the lines corresponding
63 -- the the modules or configuration files that you want, below.
64 -- The modules' configuration files correspond to the names of the
65 -- modules with 'mod' replaced by 'cfg'.
66 dopath("cfg_defaults")
68 -- Load configuration of the Ion 'core'. Most bindings are here.
69 --dopath("cfg_ioncore")
71 -- Load some kludges to make apps behave better.
72 --dopath("cfg_kludges")
74 -- Define some layouts.
75 --dopath("cfg_layouts")
77 -- Load some modules. Bindings and other configuration specific to modules
78 -- are in the files cfg_modulename.lua.
79 --dopath("mod_query")
80 --dopath("mod_menu")
81 --dopath("mod_tiling")
82 --dopath("mod_statusbar")
83 --dopath("mod_dock")
84 --dopath("mod_sp")
88 -- Common customisations
91 -- Uncommenting the following lines should get you plain-old-menus instead
92 -- of query-menus.
94 --defbindings("WScreen", {
95 -- kpress(ALTMETA.."F12", "mod_menu.menu(_, _sub, 'mainmenu', {big=true})"),
96 --})
98 --defbindings("WMPlex.toplevel", {
99 -- kpress(META.."M", "mod_menu.menu(_, _sub, 'ctxmenu')"),
100 --})