conky-config/ports.conf
2025-04-17 22:12:47 -04:00

79 lines
2.3 KiB
Plaintext

-- 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_left',
background = true,
border_inner_margin = 10,
border_width = 3,
cpu_avg_samples = 2,
default_color = '#a7c080',
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=16',
gap_x = 50,
gap_y = 80,
minimum_height = 350,
minimum_width = 200,
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 = '272e33',
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 #7fbbb3}Common Network Ports
${color #504945}$hr
${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
]]