diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-04 15:18:24 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-03-04 15:18:24 +1100 |
| commit | 94fc21eb45446727993a0ac8f5b849cb5add67aa (patch) | |
| tree | 1ef81defcda1c24915a1039aa5129c2080428f49 /install | |
| parent | install: firefox module (diff) | |
| download | caelestia-cli-94fc21eb45446727993a0ac8f5b849cb5add67aa.tar.gz caelestia-cli-94fc21eb45446727993a0ac8f5b849cb5add67aa.tar.bz2 caelestia-cli-94fc21eb45446727993a0ac8f5b849cb5add67aa.zip | |
install: fix firefox install
Also actually add it to the completions and valid modules
Diffstat (limited to 'install')
| -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 |