Skip to content

Instantly share code, notes, and snippets.

@hickVieira
Last active May 18, 2024 15:18
Show Gist options
  • Save hickVieira/d50855d46bbc2d233eaffe0ac6ecee91 to your computer and use it in GitHub Desktop.
Save hickVieira/d50855d46bbc2d233eaffe0ac6ecee91 to your computer and use it in GitHub Desktop.
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=9.5',
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 = 512, minimum_height = 512,
maximum_width = 256,
draw_shades = true,
draw_outline = false,
draw_borders = true,
draw_graph_borders = false,
default_color = '#00ff00',
default_shade_color = '#000000',
default_outline_color = '#828282',
alignment = 'top_right',
gap_x = 16,
gap_y = 16,
no_buffers = true,
uppercase = false,
cpu_avg_samples = 2,
override_utf8_locale = false,
--##############################################
--# Output
--##############################################
};
conky.text = [[
$alignc ${time %H}:${time %M}
$alignc ${time %d}/${time %m}/${time %y}
$alignc ${time %A}, ${time %B}
${hr}
Kernel $alignr $kernel
Host $alignr $nodename
Uptime $alignr $uptime
Battery $alignr $battery_percent% ${battery_bar 12,128 BAT0}
$alignr $battery_time
Processes $alignr $processes
Load $alignr ${loadavg 1}
$alignr ${loadgraph 32,256 004400 00ff00 -t}
CPU $alignr ${cpu cpu0}% ${cpubar cpu0 12,128}
$alignr ${freq_g cpu0}GHz
$alignr ${acpitemp}C
$alignr ${ibm_fan}RPM
$alignr ${cpugraph cpu0 32,256 004400 00ff00 -t}
RAM $alignr $memperc% ${membar 12,128}
$alignr $mem / $memmax
$alignr ${memgraph 32,256 004400 00ff00 -t}
Disk $alignr $fs_used_perc% ${fs_bar 12,128}
$alignr ${fs_used} / ${fs_size}
$alignr ${diskiograph 32,256 004400 00ff00 -t}
Swap $alignr $swapperc% ${swapbar 12,128}
$alignr $swap / $swapmax
Download $alignr ${downspeedf wlp2s0}KiB
Total $alignr ${totaldown wlp2s0}
$alignr ${downspeedgraph wlp2s0 32,256 004400 00ff00 -t}
Upload $alignr ${upspeedf wlp2s0}KiB
Total $alignr ${totalup wlp2s0}
$alignr ${upspeedgraph wlp2s0 32,256 004400 00ff00 -t}
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