diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-01-24 09:01:19 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-01-24 09:01:19 +0100 |
| commit | a44dde93388f1c5c9ed6ea73d5e9ee7849e2d475 (patch) | |
| tree | b70fc06203133bebf4a51820f48bf8effa2ee9c2 /conky | |
| parent | b34e284c6225e72fe7d612f8913d0a35b9d7ea17 (diff) | |
| download | dotfiles-master.tar.gz dotfiles-master.zip | |
Diffstat (limited to '')
| -rw-r--r-- | conky/.conkyrc | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/conky/.conkyrc b/conky/.conkyrc deleted file mode 100644 index 410002e..0000000 --- a/conky/.conkyrc +++ /dev/null | |||
| @@ -1,107 +0,0 @@ | |||
| 1 | |||
| 2 | conky.config = { | ||
| 3 | background = true, -- forked to background | ||
| 4 | cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring. | ||
| 5 | diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring. | ||
| 6 | double_buffer = true, -- Use the Xdbe extension? (eliminates flicker) | ||
| 7 | if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address | ||
| 8 | net_avg_samples = 2, -- The number of samples to average for net data | ||
| 9 | no_buffers = true, -- Subtract (file system) buffers from used memory? | ||
| 10 | temperature_unit = 'celsius', -- fahrenheit or celsius | ||
| 11 | text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256 | ||
| 12 | update_interval = 1, -- update interval | ||
| 13 | imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song | ||
| 14 | |||
| 15 | alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right, | ||
| 16 | gap_x = 50, -- pixels between right or left border | ||
| 17 | gap_y = 70, -- pixels between bottom or left border | ||
| 18 | |||
| 19 | -- Setup Window Size | ||
| 20 | minimum_height = 300, | ||
| 21 | minimum_width = 450, | ||
| 22 | maximum_width = 660, | ||
| 23 | |||
| 24 | --Graphical | ||
| 25 | border_inner_margin = 5, -- margin between border and text | ||
| 26 | border_outer_margin = 5, -- margin between border and edge of window | ||
| 27 | border_width = 0, -- border width in pixels | ||
| 28 | default_bar_width = 260, -- default is 0 - full width | ||
| 29 | default_bar_height = 10, -- default is 6 | ||
| 30 | default_gauge_height = 25, -- default is 25 | ||
| 31 | default_gauge_width =40, -- default is 40 | ||
| 32 | default_graph_height = 40, -- default is 25 | ||
| 33 | default_graph_width = 153, -- default is 0 - full width | ||
| 34 | default_shade_color = '#000000', -- default shading colour | ||
| 35 | default_outline_color = '#000000', -- default outline colour | ||
| 36 | draw_borders = false, -- draw borders around text | ||
| 37 | draw_graph_borders = true, -- draw borders around graphs | ||
| 38 | draw_shades = false, -- draw shades | ||
| 39 | draw_outline = false, -- draw outline | ||
| 40 | stippled_borders = 0, -- dashing the border | ||
| 41 | |||
| 42 | --Textual | ||
| 43 | format_human_readable = true, -- KiB, MiB rather then number of bytes | ||
| 44 | font = 'Fira Code:size=12', -- the default font used | ||
| 45 | font2 = 'Raleway:bold:size=30', -- font for the time | ||
| 46 | font3 = 'Ubuntu:size=14', -- font for the date | ||
| 47 | font4 = 'Raleway:bold:size=9', -- font for the keybindings heading | ||
| 48 | max_text_width = 0, -- 0 will make sure line does not get broken if width too smal | ||
| 49 | max_user_text = 16384, -- max text in conky default 16384 | ||
| 50 | override_utf8_locale = true, -- force UTF8 requires xft | ||
| 51 | short_units = true, -- shorten units from KiB to k | ||
| 52 | top_name_width = 21, -- width for $top name value default 15 | ||
| 53 | top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false. | ||
| 54 | uppercase = false, -- uppercase or not | ||
| 55 | use_spacer = 'none', -- adds spaces around certain objects to align - default none | ||
| 56 | use_xft = true, -- xft font - anti-aliased font | ||
| 57 | xftalpha = 1, -- alpha of the xft font - between 0-1 | ||
| 58 | |||
| 59 | --Windows | ||
| 60 | own_window = true, -- create your own window to draw | ||
| 61 | own_window_argb_value = 255, -- real transparency - composite manager required 0-255 | ||
| 62 | own_window_argb_visual = true, -- use ARGB - composite manager required | ||
| 63 | own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop | ||
| 64 | own_window_colour = '#282828', -- set colour if own_window_transparent no | ||
| 65 | own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0% | ||
| 66 | own_window_title = 'dwm_conky', -- set the name manually | ||
| 67 | own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel | ||
| 68 | own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it | ||
| 69 | |||
| 70 | --Colors (Gruvbox Dark) | ||
| 71 | color0 = '#AB9DF2', | ||
| 72 | color1 = '#FCFCFA', | ||
| 73 | color2 = '#78DCE8', | ||
| 74 | color3 = '#A9DC76', | ||
| 75 | |||
| 76 | |||
| 77 | }; | ||
| 78 | |||
| 79 | conky.text = [[ | ||
| 80 | ${alignc}${color0}${font2}${time %H:%M}${font} | ||
| 81 | ${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color} | ||
| 82 | ${color1}${hr}${color0} | ||
| 83 | ${color3}Uptime:$color3 $uptime | ||
| 84 | ${color3}Battery: ${battery_percent BAT0}% ${alignr}${battery_bar 8,70 BAT0} | ||
| 85 | ${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu% | ||
| 86 | ${color2}${goto 12}${cpubar 8,254} | ||
| 87 | ${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}% | ||
| 88 | ${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}% | ||
| 89 | ${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}% | ||
| 90 | ${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax | ||
| 91 | ${color2}${goto 12}${membar 8,254}${color} | ||
| 92 | ${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1} | ||
| 93 | ${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2} | ||
| 94 | ${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3} | ||
| 95 | ${color3}Storage: $color3${fs_free /}/${fs_size /} | ||
| 96 | ${color2}${fs_bar 6 /} | ||
| 97 | ${color1}${hr}${colo0} | ||
| 98 | ${voffset 18}${color1}${alignc}${font4}Shortcuts${font}${color} | ||
| 99 | ${color1}[SUPER]+[RETURN]${alignr}${color2}terminal${color} | ||
| 100 | ${color1}[SUPER]+b${alignr}${color2}hide bar${color} | ||
| 101 | ${color1}[SUPER]+d${alignr}${color2}launcher${color} | ||
| 102 | ${color1}[SUPER]+q${alignr}${color2}kill${color} | ||
| 103 | ${color1}[SUPER]+[1-9]${alignr}${color2}switch${color} | ||
| 104 | ${color1}[SUPER]+[SHIFT]+r${alignr}${color2}htop${color} | ||
| 105 | ${color1}${hr}${color} | ||
| 106 | |||
| 107 | ]]; | ||
