-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.lua.template
55 lines (46 loc) · 1.24 KB
/
config.lua.template
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
51
52
53
54
55
local module = {}
-- [ appearance ] --------------------------------------------------------------
-- Load color schemes from xresources
module.xresources = false
-- color scheme to use, choose from: light, mirage, dark
module.color_scheme = 'light'
-- path to your wallpaper
-- module.wallpaper = ''
-- [ widgets ] -----------------------------------------------------------------
-- disable desktop widget
-- module.desktop_widgets = false
-- widgets to be added to wibar
-- module.wibar_widgets = {
-- 'net_down',
-- 'net_up',
-- 'vol',
-- 'mem',
-- 'cpu',
-- 'fs',
-- 'weather',
-- 'temp',
-- 'bat',
-- 'datetime'
-- }
-- widgets to be added to the desktop pop up
-- module.arc_widgets = {'cpu', 'mem', 'fs', 'bat'}
-- configure widgets
module.widgets_arg = {
weather = {
-- city and app id for the weather widget
city_id = 'change_me',
app_id = 'change_me'
},
temp = {
-- set resource for temperature widget
thermal_zone = 'thermal_zone0'
},
net = {
-- network interface
interface = 'change_me'
}
}
-- [ miscellaneous ] -----------------------------------------------------------
-- Using Tyrannical tag managment engine
module.tyrannical = false
return module