-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlayout.lua
94 lines (79 loc) · 3.52 KB
/
layout.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
--- Conky entry point script
-- Conky does not add our config directory to lua's PATH, so we do it manually
local script_dir = debug.getinfo(1, 'S').source:match("^@(.*/)") or "./"
package.path = script_dir .. "?.lua;" .. package.path
local conkyrc = require('conkyrc')
local polycore = require('src/polycore')
local data = require('src/data')
local widget = require('src/widget')
-- Draw debug information
DEBUG = false
--- Called once on startup to initialize widgets.
-- @treturn widget.Renderer
function polycore.setup()
local secondary_text_color = {.72, .72, .71, 1} -- ~b9b9b7
-- Write fan speeds. This requires lm_sensors to be installed.
-- Run `sensonrs` to see if any fans are reported. If not, remove
-- this section and the corresponding line below.
local fan_rpm_text = widget.TextLine{align="center", color=secondary_text_color}
fan_rpm_text.update = function(self)
local fans = data.fan_rpm()
self:set_text(table.concat{fans[1], " rpm · ", fans[2], " rpm"})
end
-- Write individual CPU core temperatures as text.
-- This also relies on lm_sensors.
local cpu_temps_text = widget.TextLine{align="center", color=secondary_text_color}
cpu_temps_text.update = function(self)
local cpu_temps = data.cpu_temperatures()
self:set_text(table.concat(cpu_temps, " · ") .. " °C")
end
-- Write individual CPU core temperatures as text.
-- This also relies on lm_sensors.
local gpu_power_text = widget.TextLine{align="right", font_size=10.1}
gpu_power_text.update = function(self)
local fans = data.fan_rpm()
local gpu_power_draw = string.format("%.0f", data.gpu_power_draw())
self:set_text(table.concat{gpu_power_draw, " W ", fans[5], " rpm"})
end
local widgets = {
fan_rpm_text, -- see above
cpu_temps_text, -- see above
widget.Filler{height=3},
-- Adjust the CPU core count to your system.
-- Requires lm_sensors for CPU temperatures.
widget.Cpu{cores=6, inner_radius=28, gap=5, outer_radius=57},
widget.Filler{height=7},
widget.CpuFrequencies{cores=6, min_freq=0.75, max_freq=4.3},
widget.Filler{height=129},
-- See also widget.MemoryBar
widget.MemoryGrid{rows=5},
widget.Filler{height=78},
-- Requires `nvidia-smi` to be installed. Does not work for AMD GPUs.
gpu_power_text, -- see above
widget.Filler{height=2},
widget.Gpu(),
widget.Filler{height=1},
widget.GpuTop{lines=5, color=secondary_text_color},
widget.Filler{height=66},
-- Adjust the interface name for your system. Run `ifconfig` to find
-- out yours. Common names are "eth0" and "wlan0".
widget.Network{interface="enp0s31f6", downspeed=5 * 1024, upspeed=1024,
graph_height=22},
widget.Filler{height=34},
-- Mount paths. Devices that aren't mounted will not be rendered until
-- they appear. That way external drives can be displayed automatically.
widget.Drive("/"),
widget.Drive("/mnt/blackstor"),
widget.Drive("/mnt/bluestor"),
widget.Filler(),
}
local root = widget.Frame(widget.Rows(widgets), {
padding={108, 9, 10, 10},
border_color={0.8, 1, 1, 0.05},
border_width = 1,
border_sides = {"right"},
})
return widget.Renderer{root=root,
width=conkyrc.config.minimum_width,
height=conkyrc.config.minimum_height}
end