From 108b3180f3f90d5220e1333ace4b05b007cc6d8c Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Sun, 29 Aug 2021 18:52:49 -0300 Subject: [PATCH] conky: add config --- .config/conky/conky.conf | 34 ++++++++++++++++++++++++++++++++++ .config/qtile/autostart.sh | 3 +++ 2 files changed, 37 insertions(+) create mode 100644 .config/conky/conky.conf diff --git a/.config/conky/conky.conf b/.config/conky/conky.conf new file mode 100644 index 0000000..02efc6a --- /dev/null +++ b/.config/conky/conky.conf @@ -0,0 +1,34 @@ +conky.config = { + use_xft = true, + font = 'Azeret Mono', + xftalpha = 0, + update_interval = 1, + total_run_times = 0, + + xinerama_head = 0, + + own_window = true, + own_window_type = 'override', + own_window_transparent = true, + own_window_colour = '#000000', + + double_buffer = true, + draw_shades = false, + draw_outline = false, + draw_borders = false, + alignment = 'top_middle', + + gap_x = 0, + gap_y = 100, + + default_color = 'white', + + minimum_width = 0, minimum_height = 250, + +}; + +conky.text = [[ +${voffset 0}${color FFFFFF}${alignc}${font Azeret Mono Medium:size=85}${time %^A} +${voffset -40}${color FFFFFF}${alignc}${font Azeret Mono Light:size=20}${time %d %^B, %Y} +${voffset 20}${color FFFFFF}${alignc}${font Azeret Mono Light:size=20}${time - %I:%M %p -} +]]; diff --git a/.config/qtile/autostart.sh b/.config/qtile/autostart.sh index be39e69..7172767 100755 --- a/.config/qtile/autostart.sh +++ b/.config/qtile/autostart.sh @@ -18,6 +18,9 @@ greenclip daemon & # Display background image feh --bg-scale ~/.config/wall.png +# Start conky +conky & + # Start network manager applet (systray) nm-applet &