diff options
Diffstat (limited to 'i3.dot.link/conkyrc')
-rw-r--r-- | i3.dot.link/conkyrc | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/i3.dot.link/conkyrc b/i3.dot.link/conkyrc new file mode 100644 index 0000000..2e4fb0d --- /dev/null +++ b/i3.dot.link/conkyrc @@ -0,0 +1,70 @@ +out_to_x no +own_window no +out_to_console yes +background no +max_text_width 0 + +# Update interval in seconds +update_interval 3.0 + +# This is the number of times Conky will update before quitting. +# Set to zero to run forever. +total_run_times 0 + +# Shortens units to a single character (kiB->k, GiB->G, etc.). Default is off. +short_units yes + +# How strict should if_up be when testing an interface for being up? +# The value is one of up, link or address, to check for the interface +# being solely up, being up and having link or being up, having link +# and an assigned IP address. +if_up_strictness address + +# Add spaces to keep things from moving about? This only affects certain objects. +# use_spacer should have an argument of left, right, or none +#use_spacer left + +# Force UTF8? note that UTF8 support required XFT +override_utf8_locale no + +# number of cpu samples to average +# set to 1 to disable averaging +cpu_avg_samples 4 + +# Stuff after 'TEXT' will be formatted on screen +TEXT + +# JSON for i3bar + +#[{ "full_text" : "/ ${fs_free /home}" , "color" : "\#ffffff" }, +#{ "full_text" : "CPU ${cpu cpu}%", "color" : "\#dce7ed"}, +#{ "full_text" : " ${battery_time} / ${battery_percent}% " , "color" : ${if_match ${battery_percent}>16}"\#4C7899"${else}"\#FF173E"${endif} }, +#{ "full_text" : " ${time %a %d %b} ${time %H:%M:%S} ","color": "\#2fdc57"}], + + +[ +{"full_text":"${time %a %d %m}","color":"\#cccccc","separator":false,"separator_block_width":10},\ +{"full_text":"${time %H:%M}","color":"\#cccccc","separator":false,"separator_block_width":320},\ +\ +{"full_text":"/","color":"\#888888","separator":false,"separator_block_width":3},\ +{"full_text":"${fs_free /home}","color":"\#cccccc","separator":false,"separator_block_width":10},\ +\ +{"full_text":"r","color":"\#888888","separator":false,"separator_block_width":3},\ +{"full_text":"${memperc}%","color":${if_match ${memperc}>20}"\#cc5555"${else}"\#cccccc"${endif},"separator":false,"separator_block_width":10 },\ +\ +{"full_text":"c","color":"\#888888","separator":false,"separator_block_width":3},\ +{"full_text":"${cpu}%","color":${if_match ${cpu}>10}"\#cc5555"${else}"\#cccccc"${endif},"separator":false,"separator_block_width":10},\ +\ +{"full_text":"${acpitemp}F","color":${if_match ${acpitemp}>48}"\#cc5555"${else}"\#cccccc"${endif},"separator":false,"separator_block_width":10},\ +\ +{"full_text":"v","color":"\#888888","separator":false,"separator_block_width":3},\ +{"full_text":"${if_mixer_mute}M${else}${mixer}${endif}","color":"\#cccccc","separator":false,"separator_block_width":10},\ +\ +{"full_text":"b","color":"\#888888","separator":false,"separator_block_width":3},\ +{"full_text":"${battery_percent}","color":${if_match ${battery_percent}<30}"\#cc5555"${else}"\#eeeeee"${endif},"separator":false,"separator_block_width":10 },\ +{"full_text":"${battery_time}","color":"\#cccccc","separator":false,"separator_block_width":10 },\ +\ +{"full_text":"${if_up wlan0}w ${wireless_bitrate wlan0}${else}${if_up eth0}e ${upspeedf eth0} up ${downspeedf eth0} dwn${else}{null}${endif}${endif} ","color":"\#cccccc","separator":false,"separator_block_width":10}\ +\ +\ +], |