diff options
Diffstat (limited to 'install/firefox.fish')
| -rwxr-xr-x | install/firefox.fish | 8 |
1 files changed, 7 insertions, 1 deletions
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 |