disabled firefox view, added install script

This commit is contained in:
hnhx 2023-02-14 19:48:32 +01:00
parent 86cbbc2a40
commit 5502ce3a6f
4 changed files with 11 additions and 21 deletions

View File

@ -17,31 +17,14 @@ Just simply disabling telemetry in the settings is not enough anymore, Firefox w
## How to use (GNU/Linux)
Clone the repo
WARNING: This will remove everything from your default profile.
```
git clone https://github.com/hnhx/user.js
cd user.js
./install.sh
```
Find your Firefox profile directory, it will probably look like this: (random string).default-release
```
ls $HOME/.mozilla/firefox
```
Close Firefox now!
<br>
Remove the content of the directory
```
rm -rf $HOME/.mozilla/firefox/*.default-release/*
```
Now move the content of the repo to your profile directory
```
cp user.js/firefox/* $HOME/.mozilla/firefox/*.default-release
```
Done! Now you can open Firefox again!
<br>
## Is this any better than arkenfox?

Binary file not shown.

View File

@ -76,6 +76,7 @@ user_pref("network.protocol-handler.external.apt+http",true);
user_pref("browser.download.useDownloadDir", false);
user_pref("browser.aboutConfig.showWarning", false);
user_pref("browser.toolbars.bookmarks.visibility", "never");
user_pref("browser.tabs.firefox-view", false);
// Privacy & Freedom Issues
// https://webdevelopmentaid.wordpress.com/2013/10/21/customize-privacy-settings-in-mozilla-firefox-part-1-aboutconfig/

6
install.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
pkill firefox
rm -rf $HOME/.mozilla/firefox/*.default-release/*
cp firefox/* $HOME/.mozilla/firefox/*.default-release
echo "Done, you can open Firefox now!"