Last active
April 3, 2022 20:57
-
-
Save TheSirop/cef3b9c954a446a78ddd080c151b0fab to your computer and use it in GitHub Desktop.
Minimal Conky for Ubuntu
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 = { | |
| background=true, | |
| update_interval=1, | |
| double_buffer=true, | |
| no_buffers=true, | |
| imlib_cache_size=10, | |
| draw_shades=false, | |
| draw_outline=false, | |
| draw_borders=false, | |
| gap_x=100, | |
| gap_y=50, | |
| alignment="bottom_left", | |
| minimum_height=300, | |
| minimum_width=0, | |
| own_window=true, | |
| own_window_type="dock", | |
| own_window_transparent=true, | |
| own_window_hints="undecorated,below,sticky,skip_taskbar,skip_pager", | |
| own_window_argb_visual=true, | |
| own_window_argb_value=0, | |
| use_xft=true, | |
| xftalpha=1, | |
| font="Segoe UI Light :size=10", | |
| text_buffer_size=256, | |
| override_utf8_locale=true, | |
| default_color='#D8DEE9', | |
| color0='#D8DEE9', | |
| color1='#D8DEE9', | |
| }; | |
| conky.text = [[ | |
| ${font Segoe UI Light:weight=Bold:size=45}${color0}\ | |
| ${time %I:%M}\ | |
| ${font Segoe UI Light:weight=Bold:size=15}${color0}\ | |
| ${time %p} | |
| ${voffset -10} | |
| ${voffset -30} | |
| ${font Segoe UI Light:weight=Bold:size=20}${color0}\ | |
| ${time %d %B, %Y}\ | |
| ${voffset -5} | |
| ${font Segoe UI Light:weight=Bold:size=15}${color0}\ | |
| CPU usage: ${cpu cpu0}%\ | |
| ${voffset 3} | |
| Storage /: ${fs_free /} free\ | |
| ${voffset 3} | |
| Storage /home: ${fs_free /home} free\ | |
| ${voffset 3} | |
| ${font Segoe UI Light:weight=Bold:size=15}${color0}\ | |
| RAM usage: ${mem}\ | |
| ${voffset 3} | |
| Uptime: ${uptime}\ | |
| ]]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment