From 94fc21eb45446727993a0ac8f5b849cb5add67aa Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 4 Mar 2025 15:18:24 +1100 Subject: install: fix firefox install Also actually add it to the completions and valid modules --- install/firefox.fish | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'install') diff --git a/install/firefox.fish b/install/firefox.fish index 7f170d1..3f6c78c 100755 --- a/install/firefox.fish +++ b/install/firefox.fish @@ -21,7 +21,13 @@ end # Install zen css if test -d $HOME/.zen for profile in $HOME/.zen/*/chrome - cp $dist/zen.css $profile/userChrome.css + for file in userChrome userContent + if test -f $profile/$file.css + echo -e "@import url('$dist/zen/$file.css');\n$(cat $profile/$file.css)" > $profile/$file.css + else + echo "@import url('$dist/zen/$file.css');" > $profile/$file.css + end + end end end -- cgit v1.2.3-freya