58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
-- Conky, a system monitor https://github.com/brndnmtthws/conky
|
|
--
|
|
-- This configuration file is Lua code. You can write code in here, and it will
|
|
-- execute when Conky loads. You can use it to generate your own advanced
|
|
-- configurations.
|
|
--
|
|
-- Try this (remove the `--`):
|
|
--
|
|
-- print("Loading Conky config")
|
|
--
|
|
-- For more on Lua, see:
|
|
-- https://www.lua.org/pil/contents.html
|
|
|
|
conky.config = {
|
|
alignment = 'top_right',
|
|
background = false,
|
|
border_width = 1,
|
|
cpu_avg_samples = 2,
|
|
default_color = 'white',
|
|
default_outline_color = 'white',
|
|
default_shade_color = 'white',
|
|
double_buffer = true,
|
|
draw_borders = false,
|
|
draw_graph_borders = false,
|
|
draw_outline = false,
|
|
draw_shades = false,
|
|
extra_newline = false,
|
|
font = 'DejaVu Serif:size=18',
|
|
gap_x = 15,
|
|
gap_y = 15,
|
|
minimum_height = 5,
|
|
minimum_width = 5,
|
|
net_avg_samples = 2,
|
|
no_buffers = true,
|
|
out_to_console = false,
|
|
out_to_ncurses = false,
|
|
out_to_stderr = false,
|
|
out_to_x = true,
|
|
own_window = true,
|
|
own_window_argb_visual = true,
|
|
own_window_class = 'Conky',
|
|
own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager',
|
|
own_window_type = 'desktop',
|
|
own_window_argb_value = 112,
|
|
show_graph_range = false,
|
|
show_graph_scale = false,
|
|
stippled_borders = 0,
|
|
update_interval = 1.0,
|
|
uppercase = false,
|
|
use_spacer = 'none',
|
|
use_xft = true,
|
|
}
|
|
|
|
conky.text = [[
|
|
${alignc}${color orange}Weather
|
|
${alignc}${voffset 15}${color grey}Current
|
|
${color grey}${exec cat /home/citrullux/example}
|
|
]] |