Compare commits
No commits in common. "be014305fe3d593203c2a7e2b1e38596e5efd39a" and "0ad2f8c5f6e60a7ce6d79b61b2ae4d3139498e23" have entirely different histories.
be014305fe
...
0ad2f8c5f6
1 changed files with 12 additions and 18 deletions
30
fenix-fox.sh
30
fenix-fox.sh
|
@ -31,18 +31,11 @@ enable_profile_customizations() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
takebackup() {
|
|
||||||
echo "Copy files in place and enable fenix-fox"
|
|
||||||
if [ -d "${installdir}/chrome" ]; then
|
|
||||||
echo "dir chrome already there, take backup"
|
|
||||||
mv $installdir/chrome $installdir/chrome.`date +%Y%m%d-%H%M%S`
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
installcss() {
|
installcss() {
|
||||||
if [[ ! -n "$arg2" ]]; then
|
if [[ ! -n "$2" ]]; then
|
||||||
config="true-mobile"
|
config="true-mobile"
|
||||||
else
|
else
|
||||||
config=$arg2
|
config=$1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case $config in
|
case $config in
|
||||||
|
@ -65,7 +58,10 @@ installcss() {
|
||||||
|
|
||||||
deploy_fenix_fox() {
|
deploy_fenix_fox() {
|
||||||
echo "Copy files in place and enable fenix-fox"
|
echo "Copy files in place and enable fenix-fox"
|
||||||
takebackup
|
if [ -d "${installdir}/chrome" ]; then
|
||||||
|
echo "dir chrome already there, take backup"
|
||||||
|
mv $installdir/chrome $installdir/chrome.original
|
||||||
|
fi
|
||||||
mkdir $installdir/chrome
|
mkdir $installdir/chrome
|
||||||
cp -r src/userChrome/fenix_fox.css $installdir/chrome/
|
cp -r src/userChrome/fenix_fox.css $installdir/chrome/
|
||||||
cp -r src/userChrome/dynamic_popups_pro.css $installdir/chrome/
|
cp -r src/userChrome/dynamic_popups_pro.css $installdir/chrome/
|
||||||
|
@ -75,9 +71,12 @@ deploy_fenix_fox() {
|
||||||
|
|
||||||
deploy_true_mobile() {
|
deploy_true_mobile() {
|
||||||
echo "Copy files in place and enable true-mobile"
|
echo "Copy files in place and enable true-mobile"
|
||||||
takebackup
|
if [ -d "${installdir}/chrome" ]; then
|
||||||
|
echo "dir chrome already there, take backup"
|
||||||
|
mv $installdir/chrome $installdir/chrome.original
|
||||||
|
fi
|
||||||
mkdir $installdir/chrome
|
mkdir $installdir/chrome
|
||||||
cp src/userChrome/* $installdir/chrome/
|
cp src/userChrome/{true_mobile_landscape.css,appMenu.css,editBookmarkPanel.css,findbar.css,popups.css,root.css,tabmenu.css,urlbar.css,extensions_menu.css,alt-browser-alt.css,custom_rules.css,iconized_main_menu.css,round_ui_items.css,numbered_tabs.css,tab_counter.css,true_mobile_mode.css,dynamic_popups_pro.css} $installdir/chrome
|
||||||
cp src/userChrome/userChrome-true-mobile.css $installdir/chrome/userChrome.css
|
cp src/userChrome/userChrome-true-mobile.css $installdir/chrome/userChrome.css
|
||||||
cp src/userContent/theme-fenix.css $installdir/chrome/userContent.css
|
cp src/userContent/theme-fenix.css $installdir/chrome/userContent.css
|
||||||
}
|
}
|
||||||
|
@ -97,12 +96,7 @@ clonerepo() {
|
||||||
#
|
#
|
||||||
## Main
|
## Main
|
||||||
#
|
#
|
||||||
|
case "$1" in
|
||||||
# fix not passing by arguments
|
|
||||||
arg1=$1
|
|
||||||
arg2=$2
|
|
||||||
|
|
||||||
case "$arg1" in
|
|
||||||
--install)
|
--install)
|
||||||
enable_profile_customizations
|
enable_profile_customizations
|
||||||
installcss
|
installcss
|
||||||
|
|
Loading…
Reference in a new issue