Code: Select all
sudo apt install 7zip firejail firetools

Get a recent appimage of ungoogled-chromium
(from: :ungoogled-chromium-portablelinux: )
..extract an icon
...make a .desktop-launcher
Code: Select all
img=ung00gled.appimage
mkdir -p $HOME/#/app/img
wget -O "$HOME/#/app/img/"$img \
"https://github.com/ungoogled-software/ungoogled-chromium-portablelinux/releases/download/120.0.6099.109-1/ungoogled-chromium_120.0.6099.109-1.1.AppImage"
chmod +x "$HOME/#/app/img/"$img
cd "$HOME/#/app/img"
icon=ung00gled
iext=png
7z x $img -o"/tmp/$icon" -ir\!*.png -ir\!*.svg
cp -f "/tmp/$icon/"chromium.png "$HOME/.local/share/icons/#$icon.$iext"
rm -rf "/tmp/$icon"
dtop=$img.desktop
echo [Desktop Entry] >$dtop
echo GenericName="Web Browser" >>$dtop
echo Name="UnG00GleD [#app#img@firejail]" >>$dtop
echo Icon="#ung00gled" >>$dtop
echo Type=Application >>$dtop
echo Exec="sh -c 'firejail --appimage --build \$HOME/#/app/img/ung00gled.appimage --class=UnG00Gled \"\$@\"' - %U" >>$dtop
echo Categories="Network;WebBrowser;Privacy;" >>$dtop
echo Comment="#APP#IMG: firejailed ungoogled-chromium-browser" >>$dtop
echo Keywords="internet;web;browser;privacy;ungoogled;" >>$dtop
echo MimeType="application/pdf;application/rdf+xml;application/rss+xml;application/xhtml+xml;application/xhtml_xml;application/xml;image/gif;image/jpeg;image/png;image/webp;text/html;text/xml;x-scheme-handler/http;x-scheme-handler/https;" >>$dtop
echo X-APPImage-Version=$trev >>$dtop
echo StartupWMClass="UnG00Gled" >>$dtop
cp -f $dtop "$HOME/.local/share/applications/#"$dtop
Settings#1: create 'MSPWAS' profile
Close all instances, restart and select 'MSPWAS' profile ...
..pin tabs: chrome://apps/
..pin tabs: chrome://settings/
..select: chrome://password-manager/settings
Settings#2: password preferences
adjust cookie settings and allow necessary 3rdParty cookies for
[*.]live.com
[*.]microsoft.com
Settings#3: cookies
adjust memory-performance and preloading settings (this is optional) ...
Settings#4: performance and preloading
Select search-engine: 'Bing' ...
On Startup: Continue where you left ...
System: Continue running background apps ...
EOF:Part1