TenFourFox is Over
#15
RE: TenFourFox is Over
Actually, I'm not all that unsat with the way fireflop works now, but I have a hosts file that blocks over 10,000 crap web domains. And I wrote a shell script that deletes everything fireflop tries to keep track of on the filesystem, but note if you have a bookmarks file that you want to keep, this script WILL delete it. I never use bookmarks, I've always felt if a website is worth going back to I can find it again myself without the help of the browser:

Code:
#!/bin/bash

# remove everything firefox-related from the filesystem

cd $HOME

if [ -e $HOME/.mozilla ]; then
    echo "Deleting ~/.mozilla directory"
    rm -rf $HOME/.mozilla
fi

if [ -e $HOME/.local ]; then
    echo "Deleting ~/.local directory"
    rm -rf $HOME/.local
fi

if [ -e $HOME/.config ]; then
    echo "Deleting ~/.config directory"
    rm -rf $HOME/.config
fi

if [ -e $HOME/.cache ]; then
    echo "Deleting ~/.cache directory"
    rm -rf $HOME/.cache
fi

if [ -e $HOME/.pki ]; then
    echo "Deleting ~/.pki directory"
    rm -rf $HOME/.pki
fi

if (find /tmp -name tmpaddon* -maxdepth 1 -delete) then
   echo "deleting /tmp/tmpaddon* file(s)"
fi

if (find /tmp -maxdepth 1 -name mozilla_User*) then
   echo "deleting /tmp/mozilla_"$USER" directory"
   rm -rf /tmp/mozilla_$USER* 1>/dev/null 2>&1
fi

sleep 2s;

if (find /tmp -maxdepth 1 -name Temp*) then
   echo "deleting /tmp/Temp* directories"
   echo ""
   rm -r /tmp/Temp* 2>/dev/null 1>&2 &
fi

if [ -e $HOME/mymoz.tar ]; then
     tar -xf $HOME/mymoz.tar
     echo "Loading custom preferences"
     echo ""
fi

echo "starting firefox"
echo ""
firefox 2>/dev/null 1>&2 &

echo "done, exiting..."
echo ""

exit

Project: Temporarily lost at sea
Plan: World domination! Or something...
vishnu
Tezro, Octane2, 2 x Onyx4

Trade Count: (0)
Posts: 1,255
Threads: 42
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
Find Reply
07-13-2023, 04:14 AM


Messages In This Thread
TenFourFox is Over - by Raion - 03-31-2021, 07:52 PM
RE: TenFourFox is Over - by jirka - 03-31-2021, 08:21 PM
RE: TenFourFox is Over - by Raion - 03-31-2021, 10:06 PM
RE: TenFourFox is Over - by GeekLucanis - 04-01-2021, 06:52 AM
RE: TenFourFox is Over - by Shiunbird - 04-01-2021, 02:42 PM
RE: TenFourFox is Over - by shrek - 05-08-2021, 11:22 AM
RE: TenFourFox is Over - by valejacobo - 08-18-2021, 04:11 PM
RE: TenFourFox is Over - by Raion - 08-19-2021, 12:32 AM
RE: TenFourFox is Over - by GeekLucanis - 08-19-2021, 08:04 PM
RE: TenFourFox is Over - by commodorejohn - 08-20-2021, 12:45 AM
RE: TenFourFox is Over - by hamei - 03-06-2023, 02:41 AM
RE: TenFourFox is Over - by Raion - 03-06-2023, 03:07 AM
RE: TenFourFox is Over - by vishnu - 03-06-2023, 04:43 AM
RE: TenFourFox is Over - by hamei - 03-08-2023, 04:13 AM
RE: TenFourFox is Over - by vishnu - 07-13-2023, 04:14 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)