37 lines
825 B
Lua
37 lines
825 B
Lua
conky.config = {
|
|
background = false,
|
|
use_xft = true,
|
|
font = 'Helvetica:size=30',
|
|
update_interval = 600,
|
|
total_run_times = 0,
|
|
own_window = true,
|
|
own_window_type = 'desktop',
|
|
--own_window_transparent yes
|
|
own_window_argb_visual = true,
|
|
own_window_argb_value = 80,
|
|
own_window_hints = 'undecorated,sticky,skip_taskbar,skip_pager',
|
|
double_buffer = true,
|
|
minimum_width = 300,
|
|
maximum_width = 500,
|
|
draw_shades = true,
|
|
draw_outline = false,
|
|
draw_borders = false,
|
|
draw_graph_borders = true,
|
|
default_color = '#808080',
|
|
default_shade_color = '#101319',
|
|
alignment = 'top_left',
|
|
gap_x = 150,
|
|
gap_y = 300,
|
|
no_buffers = true,
|
|
uppercase = false,
|
|
cpu_avg_samples = 2,
|
|
override_utf8_locale = true,
|
|
|
|
};
|
|
|
|
conky.text = [[
|
|
${color ce2c51}${time %A} ${time %d}
|
|
${color ffffff}${time %B} ${time %Y}
|
|
]];
|
|
|
|
-- vim:set ft=lua:
|