conky config files

This commit is contained in:
Cedric Girard 2013-09-13 15:18:45 +02:00
parent 4be3bb9e92
commit 2ae8f9e344
4 changed files with 103 additions and 0 deletions

31
conky/conkyrc_date Normal file
View File

@ -0,0 +1,31 @@
background no
use_xft yes
xftfont Helvetica:size=30
update_interval 4
total_run_times 0
own_window yes
own_window_type desktop
own_window_transparent yes
own_window_hints undecorated,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 300
maximum_width 500
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
default_color 808080
default_shade_color 101319
alignment top_left
gap_x 300
gap_y 200
no_buffers yes
uppercase no
cpu_avg_samples 2
override_utf8_locale yes
TEXT
${color ce2c51}${time %a}. ${time %d}
${color ffffff}${time %B} ${time %Y}
# vim:set ft=conkyrc:

38
conky/conkyrc_sys Normal file
View File

@ -0,0 +1,38 @@
background no
use_xft yes
xftfont erus:size=08
update_interval 3.0
total_run_times 0
own_window yes
own_window_type desktop
own_window_transparent yes
own_window_hints undecorated,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 550
maximum_width 550
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders yes
alignment top_left
gap_x 200
gap_y 415
no_buffers yes
uppercase no
cpu_avg_samples 2
override_utf8_locale no
TEXT
${goto 10}${color ce2c51}RAM ${goto 110}BATTERY ${goto 220}WIRELESS \
${goto 360}ETHERNET\
${goto 10}${color ffffff}used: ${mem}${goto 110}${battery} ${goto 220}wlan0: ${addr wlan0} \
${goto 360}eth0: ${addr eth0}\
${goto 10}free: ${memeasyfree} ${goto 110}${battery_bar 8,80} ${goto 220}essid: ${wireless_essid wlan0} \
${goto 360}${downspeedf eth0}/${upspeedf eth0} KiB/s
${goto 110}${battery_time}${goto 220}signal: ${wireless_link_bar 8,70 wlan0} \
${goto 220}${downspeedf wlan0}/${upspeedf wlan0} KiB/s
# vim:set ft=conkyrc:

31
conky/conkyrc_time Normal file
View File

@ -0,0 +1,31 @@
background no
use_xft yes
xftfont Helvetica:size=60
xftalpha 0.9
update_interval 3.0
total_run_times 0
own_window yes
own_window_type desktop
own_window_transparent yes
own_window_hints undecorated,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 200
maximum_width 250
draw_shades yes
draw_outline no
draw_borders no
draw_graph_borders yes
default_color 808080
default_shade_color 101319
default_outline_color green
alignment top_left
gap_x 15
gap_y 200
no_buffers yes
uppercase no
cpu_avg_samples 2
override_utf8_locale no
TEXT
${color 000000}${time %H} ${color ffffff}${time %M}
# vim:set ft=conkyrc:

View File

@ -0,0 +1,3 @@
function conky_format( format, number )
return string.format( format, conky_parse( number ) )
end