Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/89luca89/io.github.luca.distrobox
Flatpak manifest for distrobox
https://github.com/89luca89/io.github.luca.distrobox
Last synced: 1 day ago
JSON representation
Flatpak manifest for distrobox
- Host: GitHub
- URL: https://github.com/89luca89/io.github.luca.distrobox
- Owner: 89luca89
- License: gpl-3.0
- Created: 2022-08-16T23:57:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-19T18:22:57.000Z (about 2 years ago)
- Last Synced: 2024-08-08T18:22:17.988Z (3 months ago)
- Language: Makefile
- Size: 24.4 KB
- Stars: 17
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - 89luca89/io.github.luca.distrobox - Flatpak manifest for distrobox (others)
README
# Distrobox flatpak
This is the manifest to build a flatpak to run distrobox.
# Build
```sh
make clean
make
make install
```Alternatively:
```sh
mkdir -p dist
flatpak-builder \
--disable-rofiles-fuse \
--user \
--repo=dist/repo \
--state-dir=dist/.flatpak-builder \
--force-clean dist/tmp/ \
--default-branch=beta \
io.github.luca.distrobox.ymlflatpak build-bundle dist/repo/ dist/io.github.luca.distrobox.flatpak io.github.luca.distrobox beta
flatpak install --user -y dist/io.github.luca.distrobox.flatpak
```# Limitations
This flatpak does not really support sandboxing, as the target of distrobox is
tight integration with the host.# Usage
`flatpak run io.github.luca.distrobox`
And use it as you normally would use distrobox.
It is handy to put an alias in your shell to shorten the command: `alias distrobox="flatpak run io.github.luca.distrobox"`Usage is the same as the normal app, just the command name changes from `distrobox` to `flatpak run io.github.luca.distrobox`
# Credits
This work is originated on the manifest of [@axtloss](https://github.com/axtloss) in [axtloss/flatpaks](https://github.com/axtloss/flatpaks) and
of [@mirkobrombin](https://github.com/mirkobrombin) in [AtomsDevs/Atoms](https://github.com/AtomsDevs/Atoms/)