Compare commits

...

2 commits

Author SHA1 Message Date
e799468cde xborders: disable version warning 2023-02-25 10:59:41 -08:00
bae9a307ad fcitx5: ensure local layout folder exists 2023-02-25 10:53:27 -08:00
2 changed files with 5 additions and 3 deletions

View file

@ -37,9 +37,11 @@ in
# $ vim nicola.sty # $ vim nicola.sty
# $ diff $source nicola.sty > nicola.patch # $ diff $source nicola.sty > nicola.patch
home.activation.nicola = let home.activation.nicola = let
target = ".local/share/fcitx5/anthy/nicola.sty"; targetDir = ".local/share/fcitx5/anthy/";
target = "nicola.sty";
in lib.hm.dag.entryAfter["writeBoundary"] '' in lib.hm.dag.entryAfter["writeBoundary"] ''
mkdir -p ${targetDir}
rm -f -- ${target} rm -f -- ${target}
patch -ruN ${pkgs.fcitx5-anthy}/share/fcitx5/anthy/nicola-j.sty ${./nicola.patch} -o ${target} patch -ruN ${pkgs.fcitx5-anthy}/share/fcitx5/anthy/nicola-j.sty ${./nicola.patch} -o ${targetDir}${target}
''; '';
} }

View file

@ -60,7 +60,7 @@ in with theme.colors; {
}; };
startup = [ startup = [
{ {
command = "(systemctl --user restart polybar &) && (nm-applet &) && (nextcloud &) && (xborders --border-rgb ${builtins.substring 1 6 primary}ff --border-radius 12 --border-width 2 --smart-hide-border)"; command = "(systemctl --user restart polybar &) && (nm-applet &) && (nextcloud &) && (xborders --border-rgb ${builtins.substring 1 6 primary}ff --border-radius 12 --border-width 2 --smart-hide-border --disable-version-warning)";
always = true; always = true;
notification = false; notification = false;
} }