Last active
August 31, 2020 21:29
-
-
Save matthewpoer/5b09ea547bbdd7cdc304deb778465344 to your computer and use it in GitHub Desktop.
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
| # curl https://gist.githubusercontent.com/matthewpoer/5b09ea547bbdd7cdc304deb778465344/raw/93154518e28736d6e71a09dbb4176d6b0d5fac91/conky.conf --output ~/.config/conky/conky.conf | |
| conky.config = { | |
| alignment = 'top_right', | |
| background = false, | |
| border_width = 0.5, | |
| cpu_avg_samples = 4, | |
| default_color = 'white', | |
| default_outline_color = 'grey', | |
| default_shade_color = 'black', | |
| draw_borders = true, | |
| draw_graph_borders = true, | |
| draw_outline = false, | |
| draw_shades = false, | |
| use_xft = true, | |
| font = 'DejaVu Sans Mono:size=10', | |
| gap_x = 30, | |
| gap_y = 60, | |
| maximum_width = 200, | |
| minimum_height = 5, | |
| minimum_width = 5, | |
| net_avg_samples = 2, | |
| double_buffer = true, | |
| out_to_console = false, | |
| out_to_stderr = false, | |
| extra_newline = false, | |
| own_window = true, | |
| own_window_colour = '000000', | |
| own_window_class = 'Conky', | |
| own_window_argb_visual = true, | |
| own_window_type = 'dock', | |
| own_window_transparent = true, | |
| own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', | |
| stippled_borders = 0, | |
| update_interval = 1, | |
| uppercase = false, | |
| use_spacer = 'none', | |
| show_graph_scale = false, | |
| show_graph_range = false | |
| } | |
| conky.text = [[ | |
| $color${font}${font Open Sans:size=44}$alignr${time %H:%M}$font$color${font Open Sans:size=15} | |
| $alignr${time %a}, ${time %d %b %Y}$font$color | |
| ${font Open Sans:Bold:size=16}${color 4C7523} ${nodename_short} | |
| # SYS | |
| ${font Open Sans:Bold:size=10}${color 4C7523}SYSTEM ${hr 2}$color${font}${offset 1} | |
| Kernel $alignr $kernel | |
| Uptime $alignr $uptime | |
| IP Address $alignr ${addr wlp3s0} | |
| # CPU | |
| ${font Open Sans:Bold:size=10}${color 4C7523}CPU ${hr 2}$color${font}${offset 1} | |
| $color${font}Total Usage $alignr ${cpu cpu0} % | |
| # RAM | |
| ${font Open Sans:Bold:size=10}${color 4C7523}RAM ${hr 2}$color${font}${offset 1} | |
| Total $alignr $memmax | |
| In use $alignr $mem | |
| Free $alignr $memeasyfree | |
| Buffers $alignr $buffers | |
| Cache $alignr $cached | |
| # Disk | |
| ${font Open Sans:Bold:size=10}${color 4C7523}disk ${hr 2}$color${font}${offset 1} | |
| ${offset 4}${color FFFDE2}home (${fs_type /home}) $color${fs_bar 4 /home/} | |
| ${offset 4}Total: ${fs_size /home/} | |
| ${offset 4}Free: ${fs_free /home/} | |
| ${offset 4}Used: ${fs_used /home/} | |
| ]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment