From 036c889c4a4f7f59d1e1a592586b54c5c5e93005 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 26 May 2024 20:10:26 +0500 Subject: initial commit --- conky/conky_notes.conf | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 conky/conky_notes.conf (limited to 'conky/conky_notes.conf') diff --git a/conky/conky_notes.conf b/conky/conky_notes.conf new file mode 100644 index 0000000..c30ff90 --- /dev/null +++ b/conky/conky_notes.conf @@ -0,0 +1,90 @@ +conky.config = { + + --Various settings + + background = true, -- forked to background + cpu_avg_samples = 2, + diskio_avg_samples = 10, + double_buffer = true, + if_up_strictness = 'address', + net_avg_samples = 2, + no_buffers = true, + temperature_unit = 'celsius', + text_buffer_size = 2048, + update_interval = 2, + imlib_cache_size = 0, + + --Placement + + alignment = 'top_right', + gap_x = 30, + gap_y = 50, + minimum_height = 200, + minimum_width = 200, + maximum_width = 550, + + --Graphical + + border_inner_margin = 10, + + -- margin between border and text + border_outer_margin = 0, + -- margin between border and edge of window + border_width = 0, + -- border width in pixels + default_bar_width = 280, + default_bar_height = 2, + default_gauge_height = 25, + default_gauge_width =40, + default_graph_height = 40, + default_graph_width = 153, + default_shade_color = '#000000', + default_outline_color = '#828282', + draw_borders = false, + --draw borders around text + draw_graph_borders = true, + draw_shades = false, + draw_outline = false, + stippled_borders = 0, + + --Textual + + extra_newline = false, + format_human_readable = true, + font = 'Open Sans', + max_text_width = 0, + max_user_text = 16384, + override_utf8_locale = false, + short_units = true, + top_name_width = 21, + top_name_verbose = false, + uppercase = false, + use_spacer = 'none', + use_xft = true, + xftalpha = 1, + + --Windows + + own_window = true, + own_window_argb_value = 0, + own_window_argb_visual = true, + own_window_class = 'Conky', + own_window_colour = '#000000', + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_transparent = yes, + own_window_title = 'Conky', + own_window_type = 'desktop', + + + --Colors + + default_color = '#BFDDB2', + color1 = '#BFDDB2', +}; + + +conky.text = [[ +${alignc}${font Sarasa Mono K:weight=Regular:size=24}Todo${color0}${font} +${voffset 15}${font Sarasa Mono K:weight=Light:size=18}${color1}\ +${exec awk '{printf "%d. %s\n", NR, $0}' < "$HOME/todo.md" | fmt --width=30 -s}${color1}${font} +]] -- cgit v1.2.3