local platform = {}
local wezterm = require("wezterm")

function platform.getFontSize()
    if wezterm.target_triple == "aarch64-apple-darwin" then
        return 15
    else
        return 11
    end
end

return platform