Created
May 14, 2014 13:56
-
-
Save roperzh/e90f6aa269a0c678ccd9 to your computer and use it in GitHub Desktop.
My .conkyrc file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# conky configuration | |
# | |
# The list of variables has been removed from this file in favour | |
# of keeping the documentation more maintainable. | |
# Check http://conky.sf.net for an up-to-date-list. | |
# | |
# For ideas about how to modify conky, please see: | |
# | |
# | |
# For help with conky, please see: | |
# http://crunchbanglinux.org/forums/topic/2047/conky-help/ | |
# | |
# Enjoy! :) | |
############################################## | |
# Settings | |
############################################## | |
background yes | |
use_xft yes | |
xftfont Liberation Sans:size=9 | |
xftalpha 1 | |
update_interval 1.0 | |
total_run_times 0 | |
own_window yes | |
own_window_transparent no | |
own_window_colour 000 | |
own_window_argb_visual true | |
own_window_argb_value 150 | |
own_window_type desktop | |
#own_window_argb_visual yes | |
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager | |
double_buffer yes | |
minimum_size 200 200 | |
maximum_width 240 | |
draw_shades no | |
draw_outline no | |
draw_borders no | |
draw_graph_borders no | |
default_color fff | |
default_shade_color 000000 | |
default_outline_color 828282 | |
alignment top_right | |
gap_x 12 | |
gap_y 56 | |
no_buffers yes | |
uppercase no | |
cpu_avg_samples 2 | |
override_utf8_locale no | |
############################################## | |
# Output | |
############################################## | |
TEXT | |
SYSTEM ${hr 2} | |
Kernel: ${alignr}${kernel} | |
CPU: ${cpu cpu}% ${alignr}${cpubar 8,60 cpu} | |
RAM: $memperc% ${alignr}${membar 8,60} | |
Uptime: ${alignr}${uptime} | |
DATE ${hr 2} | |
${alignc 35}${font Trebuchet MS:size=26}${time %H:%M}${font} | |
${alignc}${time %a %d %b %Y} | |
HD ${hr 2} | |
Home: | |
${fs_free /home}/${fs_size /home} ${alignr}${fs_bar 8,60 /home} | |
Root: | |
${fs_free /root}/${fs_size /root} ${alignr}${fs_bar 8,60 /root} | |
NETWORK ${hr 2} | |
${if_existing /proc/net/route wlan0} | |
wlan0: $alignr ${addr wlan0} | |
Up: ${upspeed wlan0} kb/s ${alignr}${upspeedgraph wlan0 8,60 789E2D A7CC5C} | |
Down: ${downspeed wlan0} kb/s ${alignr}${downspeedgraph wlan0 8,60 789E2D A7CC5C} | |
Upload: ${alignr}${totalup wlan0} | |
Download: ${alignr}${totaldown wlan0} | |
${else}${if_existing /proc/net/route eth0} | |
Up: ${upspeed eth0} kb/s ${alignr}${upspeedgraph eth0 8,60 789E2D A7CC5C} | |
Down: ${downspeed eth0} kb/s ${alignr}${downspeedgraph eth0 8,60 789E2D A7CC5C} | |
Upload: ${alignr}${totalup eth0} | |
Download: ${alignr}${totaldown eth0}${endif}${else}${if_existing /proc/net/route eth1} | |
Up: ${upspeed eth1} kb/s ${alignr}${upspeedgraph eth1 8,60 789E2D A7CC5C} | |
Down: ${downspeed eth1} kb/s ${alignr}${downspeedgraph eth1 8,60 789E2D A7CC5C} | |
Upload: ${alignr}${totalup eth1} | |
Download: ${alignr}${totaldown eth1}${endif}${else}${font PizzaDude Bullets:size=14}4${font} Network Unavailable${endif} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment