feat(fcitx): proper themeing and fix wayland issues

This commit is contained in:
stitchy 2025-03-08 22:45:52 +00:00
parent 49deabf581
commit 961481549f
Signed by: stitchy
SSH key fingerprint: SHA256:yz2SoxdnY67tfY5Jzb0f2v8f5W3o/IF359kbcquWip8
3 changed files with 12 additions and 11 deletions

View file

@ -54,12 +54,13 @@ decoration {
noise=.03 noise=.03
vibrancy=.2 vibrancy=.2
vibrancy_darkness=0.5 vibrancy_darkness=0.5
input_methods=true
} }
# Other # Other
rounding=15 rounding=15
inactive_opacity=.8 inactive_opacity=.8
fullscreen_opacity=1 multiplier fullscreen_opacity=1 multiplier
} }
animations { animations {

View file

@ -99,9 +99,6 @@ eval "$(zoxide init zsh)"
#export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) #export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
export PATH="${PATH}:/home/flyingstitchman/.cargo/bin" export PATH="${PATH}:/home/flyingstitchman/.cargo/bin"
# Fcitx for Xwayland
XMODIFIERS=@im=fcitx
# Clean Up # Clean Up
export QT_QPA_PLATFORM=wayland export QT_QPA_PLATFORM=wayland
export QT_QPA_PLATFORMTHEME=qt5ct export QT_QPA_PLATFORMTHEME=qt5ct

View file

@ -68,10 +68,13 @@
inputMethod = { inputMethod = {
enable = true; enable = true;
type = "fcitx5"; type = "fcitx5";
fcitx5.addons = with pkgs; [ fcitx5 = {
fcitx5-mozc waylandFrontend = true;
fcitx5-nord addons = with pkgs; [
]; fcitx5-mozc
fcitx5-fluent
];
};
}; };
}; };
} }