Created
April 23, 2018 19:47
-
-
Save jgonet/78c964fa6557bbad27b66d5b76f013c7 to your computer and use it in GitHub Desktop.
My conky conf
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.config = { | |
double_buffer = true, | |
alignment = 'top_right', | |
background = true, | |
border_width = 0, | |
cpu_avg_samples = 2, | |
default_color = 'ffffff', | |
default_outline_color = '000000', | |
default_shade_color = 'ffffff', | |
draw_borders = false, | |
draw_graph_borders = false, | |
draw_outline = false, | |
draw_shades = false, | |
use_xft = true, | |
font = 'Nimbus Sans Light:size=12', | |
gap_x = 25, | |
gap_y = 52, | |
minimum_height = 5, | |
minimum_width = 5, | |
maximum_width = 250, | |
net_avg_samples = 2, | |
no_buffers = true, | |
out_to_console = false, | |
out_to_stderr = false, | |
extra_newline = false, | |
own_window = true, | |
own_window_class = 'Conky', | |
own_window_type = 'normal', | |
own_window_hints = "undecorated,below,sticky,skip_taskbar,skip_pager", | |
own_window_transparent = false, | |
own_window_argb_visual = true, | |
own_window_argb_value = 200, | |
stippled_borders = 0, | |
update_interval = 1.0, | |
uppercase = false, | |
use_spacer = 'right', | |
show_graph_scale = false, | |
show_graph_range = false, | |
top_name_width = 8, | |
pad_percents = 2, | |
short_units = true, | |
color1 = "ffffff", | |
color2 = "00bcd4" | |
} | |
conky.text = [[ | |
${execi 300 ~/.scripts/checkBatteryLevel/checkBatteryLevel.sh}\ | |
#18b193 | |
${font Nimbus Sans Light:size=50}${alignc}${time %k:%M}${font Nimbus Sans Light:size=12} | |
${color1}$hr | |
${color1}${alignc}${font Nimbus Sans Light:size=16}Manjaro${font Nimbus Sans Light:size=12} | |
#${color1}$hr | |
#${color2}Uptime:${color1}${goto 125}$uptime | |
${color2}Battery:${goto 125}${color1}${battery_percent BAT1}% | |
${color2}${battery_bar 15,250 BAT1} | |
#${color2}RAM Usage: ${color1} $mem/$memmax - $memperc% | |
${color2}File systems: | |
/${goto 100}${color1}${fs_used /} / ${fs_size /} | |
${color2}${fs_bar 15,250 /} | |
/home${goto 100}${color1}${fs_used /home} / ${fs_size /home} | |
${color2}${fs_bar 15,250 /home} \ | |
#/backup${goto 100}${color1}${fs_used /backup} / ${fs_size /backup} | |
#${color2}${fs_bar 15,250 /backup} | |
${color1} | |
$hr | |
${execi 10000 python ~/Documents/scripts/projects_reminder.py} | |
$hr | |
${font Nimbus Sans Light:size=16}Network${font Nimbus Sans Light:size=12} | |
${if_existing /proc/net/route wlp8s0}#${color2}Local IP: ${color1}${addrs wlp8s0} | |
${color2}Up:${color1} ${upspeed wlp8s0}${goto 120}${color2}Down:${color1} ${downspeed wlp8s0} | |
#${upspeedgraph wlp8s0 50,110 00bcd4 00bcd4}${goto 125}${downspeedgraph wlp8s0 50,110 00bcd4 00bcd4} | |
${color2}Sent:${color1}${totalup wlp8s0}${goto 120}${color2}Received:${color1}${totaldown wlp8s0}${else} | |
${color2}Network disconnected${color1} | |
${execi 5 iwlist wlp8s0 scan &> /dev/null} | |
${endif} | |
#$hr | |
${font Nimbus Sans Light:size=16}Memory${font Nimbus Sans Light:size=12} | |
#${color2}Temperature:${goto 125}${color1}${execi 5 sensors | grep 'Physical*' | cut -c 18-19} °C | |
#${color2}Frequency:${goto 125}${color1}$freq_g GHz - $cpu% | |
#${loadgraph 50,250 00bcd4 00bcd4 -l} | |
${color2}RAM: ${color1}$mem / $memmax - $memperc% | |
#$hr | |
${font Nimbus Sans Light:size=16}Top Processes${font Nimbus Sans Light:size=12} | |
${color2}${top_mem name 1}${goto 100}${color1}${top_mem mem_res 1} - ${top_mem mem 1}% | |
${color2}${top_mem name 2}${goto 100}${color1}${top_mem mem_res 2} - ${top_mem mem 2}% | |
${color2}${top_mem name 3}${goto 100}${color1}${top_mem mem_res 3} - ${top_mem mem 3}% | |
${color2}${top_mem name 4}${goto 100}${color1}${top_mem mem_res 4} - ${top_mem mem 4}% | |
]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment