diff --git a/battery.conf b/battery.conf index 421cfaa..51f66a6 100644 --- a/battery.conf +++ b/battery.conf @@ -20,7 +20,7 @@ conky.config = { border_inner_margin = 10, border_width = 3, cpu_avg_samples = 2, - default_color = '#689d6a', + default_color = '#a7c080', default_outline_color = 'white', default_shade_color = 'white', double_buffer = true, @@ -29,7 +29,7 @@ conky.config = { draw_outline = false, draw_shades = false, extra_newline = false, - font = 'SourceCodePro-Regular:size=80', + font = 'Cantarell-VF:size=80', gap_x = 50, gap_y = 50, minimum_height = 50, @@ -46,7 +46,7 @@ conky.config = { own_window_type = 'override', own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager', own_window_transparent = false, - own_window_colour = '282828', + own_window_colour = '272e33', show_graph_range = false, show_graph_scale = false, stippled_borders = 0, @@ -59,5 +59,5 @@ conky.config = { -- Variables: https://conky.cc/variables conky.text = [[ -${color #458588}${battery_percent BAT1}% +${color #dbbc7f}${battery_percent BAT1}% ]] diff --git a/clock.conf b/clock.conf index ab56b7d..f1143e7 100644 --- a/clock.conf +++ b/clock.conf @@ -20,7 +20,7 @@ conky.config = { border_inner_margin = 10, border_width = 3, cpu_avg_samples = 2, - default_color = '#689d6a', + default_color = '#a7c080', default_outline_color = 'white', default_shade_color = 'white', double_buffer = true, @@ -29,7 +29,7 @@ conky.config = { draw_outline = false, draw_shades = false, extra_newline = false, - font = 'SourceCodePro-Medium:size=75', + font = 'Cantarell-VF:size=75', gap_x = 50, gap_y = 50, minimum_height = 1, @@ -46,7 +46,7 @@ conky.config = { own_window_type = 'override', own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager', own_window_transparent = false, - own_window_colour = '282828', + own_window_colour = '272e33', show_graph_range = false, show_graph_scale = false, stippled_borders = 0, @@ -59,5 +59,5 @@ conky.config = { -- Variables: https://conky.cc/variables conky.text = [[ -${color #d79921}${time %R} +${color #83c092}${time %R} ]] diff --git a/conky.conf b/conky.conf deleted file mode 120000 index 87a3919..0000000 --- a/conky.conf +++ /dev/null @@ -1 +0,0 @@ -conky.conf.gruvbox \ No newline at end of file diff --git a/conky.conf b/conky.conf new file mode 100644 index 0000000..7a42cc2 --- /dev/null +++ b/conky.conf @@ -0,0 +1,90 @@ +-- Conky, a system monitor https://github.com/brndnmtthws/conky +-- +-- This configuration file is Lua code. You can write code in here, and it will +-- execute when Conky loads. You can use it to generate your own advanced +-- configurations. +-- +-- Try this (remove the `--`): +-- +-- print("Loading Conky config") +-- +-- For more on Lua, see: +-- https://www.lua.org/pil/contents.html +-- +-- Conky Lua API: https://conky.cc/lua + +-- Configuration settings: https://conky.cc/config_settings +conky.config = { + alignment = 'top_right', + background = true, + border_inner_margin = 10, + border_width = 3, + cpu_avg_samples = 2, + default_color = '#689d6a', + default_outline_color = 'white', + default_shade_color = 'white', + double_buffer = true, + draw_borders = true, + draw_graph_borders = true, + draw_outline = false, + draw_shades = false, + extra_newline = false, + font = 'Cantarell-VF:size=12', + gap_x = 60, + gap_y = 100, + minimum_height = 400, + minimum_width = 500, + net_avg_samples = 2, + no_buffers = true, + out_to_console = false, + out_to_ncurses = false, + out_to_stderr = false, + out_to_wayland = false, + out_to_x = true, + own_window = true, + own_window_class = 'Conky', + own_window_type = 'override', + own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager', + own_window_transparent = false, + own_window_colour = '282828', + show_graph_range = false, + show_graph_scale = false, + stippled_borders = 0, + update_interval = 1.0, + uppercase = false, + use_spacer = 'none', + use_xft = true, + xinerama_head = 2, +} + +-- Variables: https://conky.cc/variables +conky.text = [[ +${color #458588}$nodename + +${color #458588}Uptime:${color #d3c6aa} $uptime +${color #504945}$hr +${color #d79921}CPU +${color #d79921}AMD Ryzen 7 5800U +${color #d79921}Usage: $cpu% ${cpubar 10} +${color #504945}$hr +${color #458588}RAM +${color #458588}Usage: $mem/$memmax - $memperc% ${membar 10} +${color #504945}$hr +${color #cc241d}File systems: + / ${fs_used /}/${fs_size /} ${fs_bar 10 /} +${color #504945}$hr +${color #98971a}Networking: +Up:${color #d3c6aa} ${upspeed} ${color grey} - ${color #98971a} Down:${color #d3c6aa} ${downspeed} +${color #504945}$hr +${if_match "${execi 1 playerctl metadata title}" != ""} +${color #cc241d}Now Playing +${color #cc241d}${execi 1 playerctl metadata title | awk -v len=56 '{ if (length($0) > len) print substr($0, 1, len-3) "..."; else print; }'} +${color #cc241d}by ${color #d3c6aa} ${execi 1 playerctl metadata artist | awk -v len=56 '{ if (length($0) > len) print substr($0, 1, len-3) "..."; else print; }'} +${color #cc241d}from ${color #d3c6aa} ${execi 1 playerctl metadata album} +${else} +${color #928374}Not Playing +${endif} +${color #504945}$hr +${color #d3c6aa}${execi 1 cat /tmp/fortune | cowsay -f moose} + +]] diff --git a/mediaplayer.conf b/mediaplayer.conf index 4673c75..cbd7574 100644 --- a/mediaplayer.conf +++ b/mediaplayer.conf @@ -20,7 +20,7 @@ conky.config = { border_inner_margin = 10, border_width = 3, cpu_avg_samples = 2, - default_color = '#689d6a', + default_color = '#a7c080', default_outline_color = 'white', default_shade_color = 'white', double_buffer = true, @@ -29,7 +29,7 @@ conky.config = { draw_outline = false, draw_shades = false, extra_newline = false, - font = 'SourceCodePro-Regular:size=12', + font = 'Cantarell-VF:size=12', gap_x = 50, gap_y = 80, minimum_height = 10, @@ -46,7 +46,7 @@ conky.config = { own_window_type = 'override', own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager', own_window_transparent = false, - own_window_colour = '282828', + own_window_colour = '272e33', show_graph_range = false, show_graph_scale = false, stippled_borders = 0, @@ -60,10 +60,10 @@ conky.config = { -- Variables: https://conky.cc/variables conky.text = [[ ${if_match "${execi 1 playerctl metadata title}" != ""} -${color #cc241d}Now Playing -${color #cc241d}${font SourceCodePro-Regular:size=35}${execi 1 playerctl metadata title | awk -v len=56 '{ if (length($0) > len) print substr($0, 1, len-3) "..."; else print; }'} -${color #cc241d}${font SourceCodePro-Regular:size=18}by ${color #ebdbb2} ${execi 1 playerctl metadata artist | awk -v len=56 '{ if (length($0) > len) print substr($0, 1, len-3) "..."; else print; }'} -${color #cc241d}from ${color #ebdbb2} ${execi 1 playerctl metadata album} +${color #e67e80}Now Playing +${color #e67e80}${font Cantarell-VF:size=35}${execi 1 playerctl metadata title | awk -v len=56 '{ if (length($0) > len) print substr($0, 1, len-3) "..."; else print; }'} +${color #e67e80}${font Cantarell-VF:size=18}by ${color #d3c6aa} ${execi 1 playerctl metadata artist | awk -v len=56 '{ if (length($0) > len) print substr($0, 1, len-3) "..."; else print; }'} +${color #e67e80}from ${color #d3c6aa} ${execi 1 playerctl metadata album} ${else} ${color #928374}Not Playing ${endif} diff --git a/mode.conf b/mode.conf index 525c7ea..275b5b4 100644 --- a/mode.conf +++ b/mode.conf @@ -20,7 +20,7 @@ conky.config = { border_inner_margin = 10, border_width = 3, cpu_avg_samples = 2, - default_color = '#689d6a', + default_color = '#a7c080', default_outline_color = 'white', default_shade_color = 'white', double_buffer = true, @@ -29,8 +29,8 @@ conky.config = { draw_outline = false, draw_shades = false, extra_newline = false, - font = 'SourceCodePro-Regular:size=12', - gap_x = 300, + font = 'Cantarell-VF:size=12', + gap_x = 350, gap_y = 80, minimum_height = 50, minimum_width = 50, @@ -46,7 +46,7 @@ conky.config = { own_window_type = 'override', own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager', own_window_transparent = false, - own_window_colour = '282828', + own_window_colour = '272e33', show_graph_range = false, show_graph_scale = false, stippled_borders = 0, @@ -59,12 +59,12 @@ conky.config = { -- Variables: https://conky.cc/variables conky.text = [[ -${font SourceCodePro-Regular:size=20}${color #cc241d}0 ${color #ebdbb2}--- -${color #cc241d}1 ${color #ebdbb2}--x -${color #cc241d}2 ${color #ebdbb2}-w- -${color #cc241d}3 ${color #ebdbb2}-wx -${color #cc241d}4 ${color #ebdbb2}r-- -${color #cc241d}5 ${color #ebdbb2}r-x -${color #cc241d}6 ${color #ebdbb2}rw- -${color #cc241d}7 ${color #ebdbb2}rwx +${font Cantarell-VF:size=20}${color #e67e80}0 ${color #d3c6aa}--- +${color #e67e80}1 ${color #d3c6aa}--x +${color #e67e80}2 ${color #d3c6aa}-w- +${color #e67e80}3 ${color #d3c6aa}-wx +${color #e67e80}4 ${color #d3c6aa}r-- +${color #e67e80}5 ${color #d3c6aa}r-x +${color #e67e80}6 ${color #d3c6aa}rw- +${color #e67e80}7 ${color #d3c6aa}rwx ]] diff --git a/ports.conf b/ports.conf index 68fef80..a558390 100644 --- a/ports.conf +++ b/ports.conf @@ -20,7 +20,7 @@ conky.config = { border_inner_margin = 10, border_width = 3, cpu_avg_samples = 2, - default_color = '#689d6a', + default_color = '#a7c080', default_outline_color = 'white', default_shade_color = 'white', double_buffer = true, @@ -29,7 +29,7 @@ conky.config = { draw_outline = false, draw_shades = false, extra_newline = false, - font = 'SourceCodePro-Regular:size=12', + font = 'Cantarell-VF:size=16', gap_x = 50, gap_y = 80, minimum_height = 350, @@ -46,7 +46,7 @@ conky.config = { own_window_type = 'override', own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager', own_window_transparent = false, - own_window_colour = '282828', + own_window_colour = '272e33', show_graph_range = false, show_graph_scale = false, stippled_borders = 0, @@ -59,20 +59,20 @@ conky.config = { -- Variables: https://conky.cc/variables conky.text = [[ -${color #458588}Common Network Ports +${color #7fbbb3}Common Network Ports ${color #504945}$hr -${color #cc241d}20 ${color #ebdbb2}FTP data transfer -${color #cc241d}21 ${color #ebdbb2}FTP control -${color #cc241d}22 ${color #ebdbb2}SSH -${color #cc241d}23 ${color #ebdbb2}Telnet -${color #cc241d}25 ${color #ebdbb2}SMTP -${color #cc241d}53 ${color #ebdbb2}DNS service -${color #cc241d}80 ${color #ebdbb2}HTTP -${color #cc241d}110 ${color #ebdbb2}POP3 -${color #cc241d}119 ${color #ebdbb2}NNTP -${color #cc241d}123 ${color #ebdbb2}NTP -${color #cc241d}143 ${color #ebdbb2}IMAP -${color #cc241d}161 ${color #ebdbb2}SNMP -${color #cc241d}194 ${color #ebdbb2}IRC -${color #cc241d}443 ${color #ebdbb2}HTTPS +${color #e67e80}20 ${color #d3c6aa}FTP data transfer +${color #e67e80}21 ${color #d3c6aa}FTP control +${color #e67e80}22 ${color #d3c6aa}SSH +${color #e67e80}23 ${color #d3c6aa}Telnet +${color #e67e80}25 ${color #d3c6aa}SMTP +${color #e67e80}53 ${color #d3c6aa}DNS service +${color #e67e80}80 ${color #d3c6aa}HTTP +${color #e67e80}110 ${color #d3c6aa}POP3 +${color #e67e80}119 ${color #d3c6aa}NNTP +${color #e67e80}123 ${color #d3c6aa}NTP +${color #e67e80}143 ${color #d3c6aa}IMAP +${color #e67e80}161 ${color #d3c6aa}SNMP +${color #e67e80}194 ${color #d3c6aa}IRC +${color #e67e80}443 ${color #d3c6aa}HTTPS ]]