Skip to content

Instantly share code, notes, and snippets.

@mijorus
Last active February 17, 2023 08:53
Show Gist options
  • Save mijorus/8f85a9ba4f475dec646fd3d932c91b0a to your computer and use it in GitHub Desktop.
Save mijorus/8f85a9ba4f475dec646fd3d932c91b0a to your computer and use it in GitHub Desktop.
Flatpak builder scripts
# Run a flatpak
#! /usr/bin/bash
flatpak kill your.app.name
flatpak-builder build/ your.app.name.json --user --force-clean
flatpak-builder --run build/ your.app.name.json app-name
# Install a Flatpak
#! /usr/bin/bash
flatpak kill your.app.name
flatpak-builder build/ your.app.name.json --user --install --force-clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment