summaryrefslogtreecommitdiffstats
path: root/conkyrc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-10-17 14:40:37 -0400
committerDavid Robillard <d@drobilla.net>2015-10-17 14:40:37 -0400
commita6885a3d6cb510dfea16404e642a0fab0bcf459c (patch)
tree818f11540f4d12f7ef4e9424f1a916e96b043605 /conkyrc
parent6edcd8b5360d39c9381317923f1958c167e6589c (diff)
downloaddotfiles-a6885a3d6cb510dfea16404e642a0fab0bcf459c.tar.gz
dotfiles-a6885a3d6cb510dfea16404e642a0fab0bcf459c.tar.bz2
dotfiles-a6885a3d6cb510dfea16404e642a0fab0bcf459c.zip
Add Conky console configuration
Diffstat (limited to 'conkyrc')
-rw-r--r--conkyrc54
1 files changed, 54 insertions, 0 deletions
diff --git a/conkyrc b/conkyrc
new file mode 100644
index 0000000..133dbf4
--- /dev/null
+++ b/conkyrc
@@ -0,0 +1,54 @@
+conky.config = {
+ alignment = 'top_left',
+ background = false,
+ border_width = 1,
+ cpu_avg_samples = 2,
+ default_color = 'white',
+ default_outline_color = 'white',
+ default_shade_color = 'white',
+ draw_borders = false,
+ draw_graph_borders = true,
+ draw_outline = false,
+ draw_shades = false,
+ use_xft = true,
+ font = 'DejaVu Sans Mono:size=12',
+ gap_x = 5,
+ gap_y = 60,
+ minimum_height = 5,
+ minimum_width = 5,
+ net_avg_samples = 2,
+ no_buffers = true,
+ extra_newline = false,
+ own_window = true,
+ own_window_class = 'Conky',
+ own_window_type = 'desktop',
+ stippled_borders = 0,
+ update_interval = 1.0,
+ uppercase = false,
+ show_graph_scale = false,
+ show_graph_range = false,
+ out_to_x = false,
+ out_to_console = true,
+ out_to_stderr = false,
+ pad_percents = 2,
+ use_spacer = 'left',
+ short_units = true,
+ console_graph_ticks = ' ,▁,▂,▃,▄,▅,▆,▇,█',
+ update_interval = 2
+}
+
+conky.text = [[
+CPU ${acpitemp}° ${color darkgray}$cpu% [${cpugraph cpu0 8,8 CB4B16 CB4B16 -t -l}] │ \
+Mem ${color darkgray}$memperc% [${memgraph 8,8 596600 596600 -t -l}] │ \
+Drive ${fs_free} ${diskio_read /dev/sda}↓ [${diskiograph_read /dev/sda 8,8 663300 996633 -t -l}] \
+${diskio_write}↑ [${diskiograph_write /dev/sda 8,8 663300 996633 -t -l}] │ \
+${if_existing /sys/class/net/eth0/operstate up}\
+Eth ${addr eth0} ${downspeed eth0}↓ [${downspeedgraph eth0 8,8 CCCC00 FFFF00 -t -l}] \
+${upspeed eth0}↑ [${upspeedgraph eth0 8,8 CCCC00 FFFF00 -t -l}] │ \
+${else}\
+Wlan ${addr wlan0} [${downspeedgraph wlan0 8,8 AA7700 FFDD00 -t -l}] ${downspeed wlan0}↓ \
+[${upspeedgraph wlan0 8,8 AA7700 FFDD00 -t -l}] ${upspeed wlan0}↑ │ \
+${endif}\
+⚡${battery_percent}% │ \
+${time %F %R}\
+]]