-
Notifications
You must be signed in to change notification settings - Fork 6
/
cfg_notion.lua
50 lines (40 loc) · 1.4 KB
/
cfg_notion.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
--
-- Notion main configuration file
--
-- This file only includes some settings that are rather frequently altered.
-- The rest of the settings are in cfg_notioncore.lua and individual modules'
-- configuration files (cfg_modulename.lua).
META="Mod4+"
--ALTMETA=""
-- Terminal emulator
if os and os.execute("test -x /usr/bin/urxvt") == 0 then
XTERM="/usr/bin/urxvt -sk -sr -si -sl 5000 -scrollstyle plain -urgentOnBell"
else
XTERM="/usr/bin/xterm"
end
-- Program launcher
if os and os.execute("test -x /usr/bin/gmrun") == 0 then
LAUNCHER="ioncore.exec_on(_, '/usr/bin/gmrun')"
else
LAUNCHER="mod_query.query_exec(_)"
end
-- Some basic settings
ioncore.set{
-- Maximum delay between clicks in milliseconds to be considered a
-- double click.
dblclick_delay=250,
opaque_resize=true,
-- Don't move the mouse cursor when changing frames with the keyboard
warp=false,
-- Default index for windows in frames: one of 'last', 'next' (for
-- after current), or 'next-act' (for after current and anything with
-- activity right after it).
frame_default_index='next-act',
-- Auto-unsqueeze transients/menus/queries.
unsqueeze=true,
-- Display notification tooltips for activity on hidden workspace.
-- This is awesome in conjunction with urgentOnBell and a bell in the PROMPT
screen_notify=true,
}
dopath("cfg_defaults")
dopath("look-bluesteel")