fnott: set font size (#1243)

Link: https://github.com/danth/stylix/pull/1243

Reviewed-by: awwpotato <awwpotato@voidq.com>
This commit is contained in:
Karun Sandhu 2025-05-09 17:21:32 +02:00 committed by GitHub
parent b06c1cb60a
commit 8775d8322a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View file

@ -7,7 +7,7 @@
lib.mkIf (config.stylix.enable && config.stylix.targets.fnott.enable)
(
let
font = config.stylix.fonts.sansSerif.name;
font = "${config.stylix.fonts.sansSerif.name}:size=${toString config.stylix.fonts.sizes.popups}";
fg = c: "${c}ff";
bg =
c:

View file

@ -1,5 +1,8 @@
{ lib, ... }:
{
maintainers = [ lib.maintainers.awwpotato ];
maintainers = with lib.maintainers; [
awwpotato
MrSom3body
];
name = "Fnott";
}