Created
August 23, 2019 23:12
-
-
Save jvegaf/973b5e1c2d2fc611f042406dabaa3acd to your computer and use it in GitHub Desktop.
Conky setup
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 = { | |
use_spacer = 'left', | |
pad_percents = 3, | |
background = false, | |
double_buffer = true, | |
font = 'DejaVu Sans Mono:size=10', | |
use_xft = true, | |
alignment = 'top_right', | |
gap_x = 10, | |
gap_y = 40, | |
own_window_argb_visual = true, | |
own_window_argb_value = 0, | |
own_window_type = 'normal', | |
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', | |
own_window = true, | |
update_interval = 5.0, | |
} | |
conky.text = [[ | |
\${color orange}Hostname: \${color}\${nodename} | |
\${color orange}Kernel: \${color}\${sysname} \${kernel} on \${machine} | |
\${color orange}Uptime: \${color}\${uptime} | |
\${exec /usr/lib/update-notifier/apt-check --human-readable} | |
\${hr} | |
\${color orange}CPU:\${color} \${freq_g} GHz | |
\${color orange}1:\${color} \${cpu cpu1}% \${cpubar cpu1} | |
\${cpugraph} | |
\${color orange}Name PID CPU% MEM% | |
\${color lightgrey} \${top name 1} \${top pid 1} \${top cpu 1} \${top mem 1} | |
\${color lightgrey} \${top name 2} \${top pid 2} \${top cpu 2} \${top mem 2} | |
\${color lightgrey} \${top name 3} \${top pid 3} \${top cpu 3} \${top mem 3} | |
\${color lightgrey} \${top name 4} \${top pid 4} \${top cpu 4} \${top mem 4} | |
\${color orange}Load average: \${color}\${loadavg} | |
\${color orange}Processes: \${color}\${processes} \\ | |
\${color orange}Running:\${color} \${running_processes} | |
\${hr} | |
\${color orange}RAM: \${color}\${mem}/\${memmax} | |
\${memperc}% \${membar 4} | |
\${color orange}Swap: \${color}\${swap}/\${swapmax} | |
\${swapperc}% \${swapbar 4} | |
\${memgraph} | |
\${hr} | |
\${color orange}/ \${color}\${fs_used /}/\${fs_size /} \${fs_bar 6 /} | |
\${hr} | |
\${color orange}IP: \${color}\${addr ${NETWORK_INTERFACE}} | |
\${color orange}Up: \${color}\${upspeed ${NETWORK_INTERFACE}} | |
\${color orange}Down: \${color}\${downspeed ${NETWORK_INTERFACE}} | |
]] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment