Last active
June 5, 2025 08:03
-
-
Save psmgeelen/d9e849cac0772c9ae81a89f6b6540994 to your computer and use it in GitHub Desktop.
How to install Zen for Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Install Flatpak and the GNOME software plugin | |
| sudo apt update | |
| sudo apt install -y flatpak gnome-software-plugin-flatpak | |
| # Add the Flathub repository if it hasn't been added yet | |
| sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo | |
| # Install the Zen browser from Flathub | |
| sudo flatpak install -y flathub app.zen_browser.zen | |
| # Reboot the system | |
| echo "Rebooting the system to complete installation..." | |
| sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment