Created
February 13, 2026 22:14
-
-
Save pythoninthegrass/df0527d8480e20d41d8710685add069f to your computer and use it in GitHub Desktop.
crunchbangplusplus ( #!++ ) Conky config
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 = { | |
| -- conky configuration | |
| -- | |
| -- The list of variables has been removed from this file in favour | |
| -- of keeping the documentation more maintainable. | |
| -- Check http://conky.sf.net for an up-to-date-list. | |
| -- | |
| -- For ideas about how to modify conky, please see: | |
| -- http://conky.sourceforge.net/variables.html | |
| -- | |
| -- For help with conky, please see: | |
| -- http://conky.sourceforge.net/documentation.html | |
| -- | |
| -- Enjoy! :) | |
| --############################################## | |
| --# Settings | |
| --############################################## | |
| background = true, | |
| use_xft = true, | |
| font = 'Liberation Sans:size=15', | |
| xftalpha = 1, | |
| update_interval = 1.0, | |
| total_run_times = 0, | |
| own_window = true, | |
| own_window_transparent = true, | |
| own_window_type = 'desktop', | |
| --own_window_argb_visual yes | |
| own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', | |
| double_buffer = true, | |
| minimum_width = 200, minimum_height = 200, | |
| maximum_width = 300, | |
| draw_shades = false, | |
| draw_outline = false, | |
| draw_borders = false, | |
| draw_graph_borders = false, | |
| default_color = '#656667', | |
| default_shade_color = '#000000', | |
| default_outline_color = '#828382', | |
| alignment = 'top_right', | |
| gap_x = 12, | |
| gap_y = 56, | |
| no_buffers = true, | |
| uppercase = false, | |
| cpu_avg_samples = 2, | |
| override_utf8_locale = false, | |
| --############################################## | |
| --# Output | |
| --############################################## | |
| }; | |
| conky.text = [[ | |
| S Y S T E M I N F O | |
| ${hr} | |
| Host:$alignr$nodename | |
| IP Address:$alignr${addr enp2s0} | |
| Uptime:$alignr$uptime | |
| CPU usage:$alignr${cpu cpu0}% | |
| RAM:$alignr$mem/$memmax | |
| Swap usage:$alignr$swap/$swapmax | |
| Disk usage:$alignr${fs_used /}/${fs_size /} | |
| S H O R T C U T K E Y S | |
| ${hr} | |
| Alt+F2$alignr Run Dialog | |
| Alt+F3$alignr Alt Menu | |
| Super+Space$alignr Main Menu | |
| Super+Tab$alignr Client Menu | |
| Super+t$alignr Terminal | |
| Super+f$alignr File Manager | |
| Super+e$alignr Editor | |
| Super+m$alignr Media Player | |
| Super+w$alignr Web Browser | |
| Super+h$alignr Task Manager | |
| Super+l$alignr Lock Screen | |
| Super+v$alignr Volume Control | |
| Super+x$alignr Logout | |
| PrtSc$alignr Screenshot | |
| ]]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment