swconfig/wezterm/platform.lua

13 lines
222 B
Lua
Raw Normal View History

2024-03-08 11:30:05 +08:00
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