Compare commits
2 commits
27cc33b17b
...
5e0a5a18b6
Author | SHA1 | Date | |
---|---|---|---|
5e0a5a18b6 | |||
95fb50c322 |
2 changed files with 5 additions and 2 deletions
BIN
.fenix-fox.sh.swp
Normal file
BIN
.fenix-fox.sh.swp
Normal file
Binary file not shown.
|
@ -4,9 +4,9 @@
|
||||||
## Variables
|
## Variables
|
||||||
#
|
#
|
||||||
# firefox dirs
|
# firefox dirs
|
||||||
firefox_root="~/.mozilla/firefox" # Not in use jet because of a not known issue...
|
firefox_root="$HOME/.mozilla/firefox"
|
||||||
firefox_profiledir="*.default-release"
|
firefox_profiledir="*.default-release"
|
||||||
installdir=`find ~/.mozilla/firefox -name $firefox_profiledir`
|
installdir=`find $firefox_root -name $firefox_profiledir`
|
||||||
|
|
||||||
# git repo
|
# git repo
|
||||||
fenix_fox="https://git.datenkastl.org/pmOS-tweaks/fenix-fox.git"
|
fenix_fox="https://git.datenkastl.org/pmOS-tweaks/fenix-fox.git"
|
||||||
|
@ -33,6 +33,9 @@ enable_profile_customizations() {
|
||||||
|
|
||||||
deploy_fenix_fox() {
|
deploy_fenix_fox() {
|
||||||
echo "Copy files in place and enable 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 -r src/userChrome $installdir/chrome
|
||||||
cp src/userChrome/userChrome-fenix_fox.css $installdir/chrome/
|
cp src/userChrome/userChrome-fenix_fox.css $installdir/chrome/
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue