Skip to content

Instantly share code, notes, and snippets.

View tomoe-mami's full-sized avatar

Tomoe Mami tomoe-mami

View GitHub Profile
-- Displays xterm 256 color palette
bright_fg, dark_fg = 47, 40
function print_section_title(text)
local width = 42
local title = " " .. text .. " "
local tile = "\226\148\129"
print( "\027[7m" .. title .. "\027[m" .. string.rep(tile, (width - #title)) )
end