Skip to content

Instantly share code, notes, and snippets.

@dotsh
Created June 24, 2021 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotsh/8c1df56005a5f9a237c953aec2ce3672 to your computer and use it in GitHub Desktop.
Save dotsh/8c1df56005a5f9a237c953aec2ce3672 to your computer and use it in GitHub Desktop.
install fractal from source with flatpak
sudo -i
cat > fractal.sh << EOF
apt install -y flatpak flatpak-builder git tmux
flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
flatpak remote-add --user --if-not-exists gnome-nightly https://nightly.gnome.org/gnome-nightly.flatpakrepo
flatpak install --assumeyes --user gnome-nightly org.gnome.Sdk org.gnome.Platform
flatpak install --assumeyes --user flathub org.freedesktop.Sdk.Extension.rust-stable//20.08
git clone https://gitlab.gnome.org/GNOME/fractal.git
cd fractal
git checkout fractal-next
git fetch
git pull
cd build-aux/
time flatpak-builder --user --install app org.gnome.FractalNext.Devel.json
EOF
chmod +x fractal.sh
tmux new -s compil './fractal.sh'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment