Add more fcitx5 themes
This commit is contained in:
parent
259598f95f
commit
845d0ac7fb
1 changed files with 19 additions and 6 deletions
25
fcitx5.nix
25
fcitx5.nix
|
@ -1,5 +1,20 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
themes = ".local/share/fcitx5/themes/"; # fcitx5 theme folder
|
||||||
|
nord = pkgs.fetchFromGitHub {
|
||||||
|
owner = "tonyfettes";
|
||||||
|
repo = "fcitx5-nord";
|
||||||
|
rev = "bdaa8fb723b8d0b22f237c9a60195c5f9c9d74d1";
|
||||||
|
sha256 = "qVo/0ivZ5gfUP17G29CAW0MrRFUO0KN1ADl1I/rvchE=";
|
||||||
|
};
|
||||||
|
gruvbox = pkgs.fetchFromGitHub {
|
||||||
|
owner = "ayamir";
|
||||||
|
repo = "fcitx5-gruvbox";
|
||||||
|
rev = "80bd3ab4c723fc6fcc4a222b6cede6f8337eedda";
|
||||||
|
sha256 = "UZc6UTpodxP3pJ6q58FZsJaHr1Wwl/NLYYmo22QYmNk=";
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
i18n.inputMethod = {
|
i18n.inputMethod = {
|
||||||
enabled = "fcitx5";
|
enabled = "fcitx5";
|
||||||
|
@ -14,12 +29,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".local/share/fcitx5/themes/Nord-Dark".source = let repo = pkgs.fetchFromGitHub {
|
"${themes}Nord-Dark".source = "${nord}/Nord-Dark";
|
||||||
owner = "tonyfettes";
|
"${themes}Nord-Light".source = "${nord}/Nord-Light";
|
||||||
repo = "fcitx5-nord";
|
"${themes}Gruvbox-Dark".source = "${gruvbox}/Gruvbox-Dark";
|
||||||
rev = "bdaa8fb723b8d0b22f237c9a60195c5f9c9d74d1";
|
"${themes}Gruvbox-Light".source = "${gruvbox}/Gruvbox-Light";
|
||||||
sha256 = "qVo/0ivZ5gfUP17G29CAW0MrRFUO0KN1ADl1I/rvchE=";
|
|
||||||
}; in "${repo}/Nord-Dark";
|
|
||||||
".config/fcitx5/conf/classicui.conf".text = "Theme=Nord-Dark";
|
".config/fcitx5/conf/classicui.conf".text = "Theme=Nord-Dark";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue