aboutsummaryrefslogtreecommitdiffstats
path: root/.config/conky
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2016-08-26 00:03:00 +0200
committerDavid Runge <dave@sleepmap.de>2016-08-26 00:03:00 +0200
commit30b503112bbcacd668d65e36fb7a09576656e902 (patch)
tree297d022f81bd3b233068133bee299b8d12a209bd /.config/conky
parentba774bfa2d8b47a9887387660009af1e275b3ad9 (diff)
downloaddotfiles-30b503112bbcacd668d65e36fb7a09576656e902.tar.gz
dotfiles-30b503112bbcacd668d65e36fb7a09576656e902.tar.bz2
dotfiles-30b503112bbcacd668d65e36fb7a09576656e902.tar.xz
dotfiles-30b503112bbcacd668d65e36fb7a09576656e902.zip
.config/conky/general: Updating to new configuration scheme.
Diffstat (limited to '.config/conky')
-rw-r--r--.config/conky/general82
1 files changed, 42 insertions, 40 deletions
diff --git a/.config/conky/general b/.config/conky/general
index 3772970..212cd2f 100644
--- a/.config/conky/general
+++ b/.config/conky/general
@@ -1,43 +1,45 @@
-#xftalpha 0.1
-background true
-total_run_times 0
-update_interval 1
-own_window yes
-own_window_type override
-own_window_argb_visual true
-own_window_argb_value 0
-own_window_hints undecorated,sticky,below,skip_taskbar,skip_pager
-double_buffer yes
-draw_shades yes
-draw_outline no
-draw_borders no
-draw_graph_borders no
-alignment top_right
-maximum_width 260
-gap_x 10
-gap_y 40
-no_buffers yes
-uppercase no
-cpu_avg_samples 1
-net_avg_samples 1
-override_utf8_locale yes
-color1 EAEAEA
-color2 00FF66
-color3 11EAEA
-color4 EAEAEA
-color5 FF3F3F
-color6 22FFFF
-color7 FF8888
-text_buffer_size 512
-pad_percents 0
-short_units yes
-format_human_readable yes
-default_bar_size 115 5
-if_up_strictness link
-xftfont Inconsolata:size=9
-use_xft
+conky.config = {
+background = true,
+total_run_times = 0,
+update_interval = 1,
+own_window = true,
+own_window_type = 'override',
+own_window_argb_visual = true,
+own_window_argb_value = 0,
+own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager',
+double_buffer = true,
+draw_shades = true,
+draw_outline = false,
+draw_borders = false,
+draw_graph_borders = false,
+alignment = 'top_right',
+maximum_width = 260,
+gap_x = 10,
+gap_y = 40,
+no_buffers = yes,
+uppercase = false,
+cpu_avg_samples = 1,
+net_avg_samples = 1,
+override_utf8_locale = yes,
+color1 = 'EAEAEA',
+color2 = '00FF66',
+color3 = '11EAEA',
+color4 = 'EAEAEA',
+color5 = 'FF3F3F',
+color6 = '22FFFF',
+color7 = 'FF8888',
+text_buffer_size = 512,
+pad_percents = 0,
+short_units = true,
+format_human_readable = true,
+default_bar_height = 5,
+default_bar_width = 200,
+if_up_strictness = 'link',
+font = 'Inconsolata:size=9',
+use_xft = true
+}
-TEXT
+conky.text = [[
${color5}Kernel: ${color1}${kernel}
${color5}Date: ${color1}${time %Y%m%d}
${color5}Time: ${color1}${time %H:%M:%S}
@@ -104,4 +106,4 @@ ${color3}${top name 7} ${color1}${top cpu 7} ${top mem 7} ${top pid 7} ${top use
${color3}${top name 8} ${color1}${top cpu 8} ${top mem 8} ${top pid 8} ${top user 8}
${color3}${top name 9} ${color1}${top cpu 9} ${top mem 9} ${top pid 9} ${top user 9}
${color3}${top name 10} ${color1}${top cpu 10} ${top mem 10} ${top pid 10} ${top user 10}
-
+]]