Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace firefox snap with firefox-esr from mozilla ppa #29

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions modules/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ sudo ./aws/install
# Add terminal shortcut to desktop for easy access
mkdir -p ~/Desktop
ln -s /usr/share/applications/mate-terminal.desktop ~/Desktop/

# Replace firefox snap with debian package if it's installed
# snap packages have some issues with VNC because of cgroup
if [ -f /snap/bin/firefox ] ; then
# On Ubuntu 22.04+, deb `firefox` package is transitional package
# and results in the snap package installation.
sudo snap remove firefox
sudo add-apt-repository -y ppa:mozillateam/ppa
sudo apt install -y -q firefox-esr
fi
Loading