fcitx5: conform to stylix styling guidelines (#2063)

Link: https://github.com/nix-community/stylix/pull/2063
Closes: https://github.com/nix-community/stylix/issues/2062
This commit is contained in:
Louis Dalibard 2025-12-05 20:04:53 +01:00 committed by GitHub
parent 61a01b75f0
commit 46440f1bc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 20 additions and 2 deletions

View file

@ -79,5 +79,5 @@
sodipodi:type="rect" sodipodi:type="rect"
d="m 25.000001,10.000001 h 10 a 15,15 45 0 1 15,15 v 10 a 15,15 135 0 1 -15,15 h -10 a 15,15 45 0 1 -15,-15 v -10 a 15,15 135 0 1 15,-15 z" d="m 25.000001,10.000001 h 10 a 15,15 45 0 1 15,15 v 10 a 15,15 135 0 1 -15,15 h -10 a 15,15 45 0 1 -15,-15 v -10 a 15,15 135 0 1 15,-15 z"
inkscape:path-effect="#path-effect998" inkscape:path-effect="#path-effect998"
style="fill:#{{base04-hex}};fill-opacity:1" /> style="fill:#{{base02-hex}};fill-opacity:1" />
</svg> </svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Before After
Before After

View file

@ -12,7 +12,7 @@ with colors;
HighlightCandidateColor = base06; HighlightCandidateColor = base06;
EnableBlur = false; EnableBlur = false;
FullWidthHighlight = true; FullWidthHighlight = true;
HighlightColor = base04; HighlightColor = base02;
HighlightBackgroundColor = base0E; HighlightBackgroundColor = base0E;
}; };
"InputPanel/BlurMargin" = { "InputPanel/BlurMargin" = {

View file

@ -0,0 +1,18 @@
{
pkgs,
lib,
...
}:
{
stylix.testbed.ui.command.text = "fcitx5-config-qt";
home-manager.sharedModules = lib.singleton {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
};
}