13 lines
222 B
Lua
13 lines
222 B
Lua
|
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
|