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
|
conky.config = {
-- Set to yes if you want conky to be forked in the background
background = true,
-- Use Xft?
use_xft = true,
-- Xft font when Xft is enabled
font = 'Terminus:size=8',
-- Update interval in seconds
update_interval = 480.0,
-- Create own window instead of using desktop (required in nautilus)
--own_window = false,
-- Use double buffering (reduces flicker, may not work for everyone)
double_buffer = true,
own_window = true,
own_window_type = 'override',
--own_window_argb_visual = true,
--own_window_transparent = true,
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_argb_visual = true,
own_window_colour = '1C1C1C',
-- Text alignment, other possible values are commented
alignment = 'top_left',
--alignment = 'top_right',
--alignment bottom_left
--alignment bottom_right
-- Gap between borders of screen and text
gap_x = 20,
gap_y = 30,
-- Subtract file system buffers from used memory?
no_buffers = true,
-- Set to yes if you want all text to be in uppercase
uppercase = false,
-- Size of buffer used for intermediary text: individual lines, $exec vars etc
text_buffer_size = 512
};
conky.text = [[
${exec nice -n 19 ionice -c 3 ~/apps/scripts/status }
]];
|