ghostty: convert font-size setting from pt to px (#1971)

Closes: https://github.com/nix-community/stylix/issues/1965
Link: https://github.com/nix-community/stylix/pull/1971

Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
Ian Holloway 2025-11-18 09:06:06 -05:00 committed by GitHub
parent 961948bcb1
commit 3e2c930ce0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,9 @@ mkTarget {
fonts.monospace.name
fonts.emoji.name
];
font-size = fonts.sizes.terminal;
# 4/3 factor used for pt to px;
font-size = fonts.sizes.terminal * 4.0 / 3.0;
};
}
)