Files
mac-dots/sketchybar/config/fonts.lua
xenomxrph 8d16baf6f1 initalize
2025-07-16 15:00:51 +02:00

15 lines
332 B
Lua

local dimens <const> = require("config.dimens")
return {
text = "Hack Nerd Font",
numbers = "Hack Nerd Font",
icons = function(size)
local font = "sketchybar-app-font:Regular"
return size and font .. ":" .. size or font .. ":" .. dimens.text.icon
end,
styles = {
regular = "Regular",
bold = "Bold",
}
}