diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-08-20 13:30:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-08-20 13:30:29 -0300 |
commit | 9e2c35ebe318d8b8ac95107bec32f5a405ba2d83 (patch) | |
tree | 865e46db5737c883f7138d39c6df059b23b2189e /conky.dot.link/status/conkyrc | |
parent | d763f83a314722f0d0b0917a32ff7400c7d09969 (diff) | |
download | conky-9e2c35ebe318d8b8ac95107bec32f5a405ba2d83.tar.gz conky-9e2c35ebe318d8b8ac95107bec32f5a405ba2d83.tar.bz2 |
Coding style and new conky instance
Diffstat (limited to 'conky.dot.link/status/conkyrc')
-rw-r--r-- | conky.dot.link/status/conkyrc | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/conky.dot.link/status/conkyrc b/conky.dot.link/status/conkyrc new file mode 100644 index 0000000..34d3d20 --- /dev/null +++ b/conky.dot.link/status/conkyrc @@ -0,0 +1,49 @@ +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 = 30.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_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 ~/apps/scripts/status } +]]; |