Last active
February 17, 2023 08:53
-
-
Save mijorus/8f85a9ba4f475dec646fd3d932c91b0a to your computer and use it in GitHub Desktop.
Flatpak builder scripts
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
# 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