README.md fix linux/macos install section
This commit is contained in:
parent
0c341deea0
commit
bcf1ea15fd
1 changed files with 9 additions and 3 deletions
12
README.md
12
README.md
|
@ -5,11 +5,17 @@ A Firefox userChrome.css theme that aims to recreate the look and feel of the Ch
|
||||||
<img src="screenshots/thumbnail.png" alt="thumbnail screenshot" title="Screenshot taken with macOS Monterey / Firefox Nightly 96.0a1 (2021-11-30)" width="800">
|
<img src="screenshots/thumbnail.png" alt="thumbnail screenshot" title="Screenshot taken with macOS Monterey / Firefox Nightly 96.0a1 (2021-11-30)" width="800">
|
||||||
|
|
||||||
## How to install
|
## How to install
|
||||||
### Via install script
|
### Via Linux and MacOS shell script
|
||||||
```bash
|
Paste this into your terminal emulator:
|
||||||
curl https://raw.githubusercontent.com/bmFtZQ/edge-frfox/blob/main/install.sh > /tmp/installer.sh && chmod +x /tmp/installer.sh && /tmp/installer.sh
|
```sh
|
||||||
|
# Linux may not have $TMPDIR set by default
|
||||||
|
if [ -z $TMPDIR ]; then TMPDIR=/tmp; fi;
|
||||||
|
|
||||||
|
curl https://raw.githubusercontent.com/bmFtZQ/edge-frfox/blob/main/install.sh > $TMPDIR/installer.sh && chmod +x $TMPDIR/installer.sh && sh $TMPDIR/installer.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Uninstallation can be done by just writing `uninstall` at the end of the script above
|
||||||
|
|
||||||
### Manual Installation
|
### Manual Installation
|
||||||
1. Go to `about:support` and click the "Open Folder/Show in Finder" button for the root directory of your browser profile/s.
|
1. Go to `about:support` and click the "Open Folder/Show in Finder" button for the root directory of your browser profile/s.
|
||||||
2. Download and copy the `chrome` folder into the profile folder.
|
2. Download and copy the `chrome` folder into the profile folder.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue