wezterm/platform.lua

13 lines
222 B
Lua
Raw Normal View History

2025-04-06 20:44:32 +08:00
local platform = {}
local wezterm = require("wezterm")
function platform.getFontSize()
if wezterm.target_triple == "aarch64-apple-darwin" then
return 15
else
return 12
end
end
return platform