diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
| commit | b5a91d3ca57d1369d0b7b502112c4b4c9849d26c (patch) | |
| tree | 8ea45e54e0b0c826f65f54ebf82e41cb68163221 /install/firefox.fish | |
| parent | feat: impl pip subcommand (diff) | |
| download | caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.gz caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.bz2 caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.zip | |
internal: remove all legacy fish scripts
Diffstat (limited to 'install/firefox.fish')
| -rwxr-xr-x | install/firefox.fish | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/install/firefox.fish b/install/firefox.fish deleted file mode 100755 index 5458fdd..0000000 --- a/install/firefox.fish +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env fish - -. (dirname (status filename))/util.fish - -install-deps git inotify-tools - -set -l dist $C_DATA/firefox - -# Update/Clone repo -update-repo firefox $dist - -# Install native app manifest -for dev in mozilla zen - if test -d $HOME/.$dev - mkdir -p $HOME/.$dev/native-messaging-hosts - cp $dist/native_app/manifest.json $HOME/.$dev/native-messaging-hosts/caelestiafox.json - sed -i "s|\$SRC|$dist|g" $HOME/.$dev/native-messaging-hosts/caelestiafox.json - end -end - -# Install zen css -if test -d $HOME/.zen - for profile in $HOME/.zen/*/chrome - for file in userChrome userContent - if test -f $profile/$file.css - set -l imp "@import url('$dist/zen/$file.css');" - grep -qFx $imp $profile/$file.css || printf '%s\n%s' $imp "$(cat $profile/$file.css)" > $profile/$file.css - else - echo "@import url('$dist/zen/$file.css');" > $profile/$file.css - end - end - end -end - -log 'Done.' -log 'Please install the extension manually from https://addons.mozilla.org/en-US/firefox/addon/caelestiafox' |