Compare commits

..

No commits in common. "5e0a5a18b622ff657a1034f3bf13e42dbba44921" and "27cc33b17be214e202d532c0416adc0bfba65580" have entirely different histories.

2 changed files with 2 additions and 5 deletions

Binary file not shown.

View file

@ -4,9 +4,9 @@
## Variables
#
# firefox dirs
firefox_root="$HOME/.mozilla/firefox"
firefox_root="~/.mozilla/firefox" # Not in use jet because of a not known issue...
firefox_profiledir="*.default-release"
installdir=`find $firefox_root -name $firefox_profiledir`
installdir=`find ~/.mozilla/firefox -name $firefox_profiledir`
# git repo
fenix_fox="https://git.datenkastl.org/pmOS-tweaks/fenix-fox.git"
@ -33,9 +33,6 @@ enable_profile_customizations() {
deploy_fenix_fox() {
echo "Copy files in place and enable fenix-fox"
if [ -d "${installdir}/chrome" ]; then
mv $installdir/chrome $installdir/chrome.original
fi
cp -r src/userChrome $installdir/chrome
cp src/userChrome/userChrome-fenix_fox.css $installdir/chrome/
}