https://github.com/bilelmoussaoui/flatpak-zsh-completion
ZSH completion for Flatpak
https://github.com/bilelmoussaoui/flatpak-zsh-completion
flatpak oh-my-zsh-plugin zsh
Last synced: about 1 month ago
JSON representation
ZSH completion for Flatpak
- Host: GitHub
- URL: https://github.com/bilelmoussaoui/flatpak-zsh-completion
- Owner: bilelmoussaoui
- License: gpl-3.0
- Created: 2017-04-19T09:18:40.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-03T20:08:43.000Z (7 months ago)
- Last Synced: 2025-03-18T02:44:46.956Z (about 1 month ago)
- Topics: flatpak, oh-my-zsh-plugin, zsh
- Language: Shell
- Homepage:
- Size: 8.32 MB
- Stars: 38
- Watchers: 5
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- trackawesomelist - flatpak (⭐36) - Tab completions for [Flatpak](https://docs.flatpak.org/en/latest/using-flatpak.html). (Recently Updated / [Oct 14, 2024](/content/2024/10/14/README.md))
README
# Flatpak completion for Z shell (Zsh)
![]()
![]()
![]()
## Dependencies
- [zsh](http://zsh.sourceforge.net/)
## Compatible Z shell plugin frameworks
- [antibody](https://getantibody.github.io/)
- [antigen](https://antigen.sharats.me/)
- [oh-my-zsh](https://ohmyz.sh/)
- [zgen](https://github.com/tarjoilija/zgen)
- [zplug](https://zplug.sh/)## Installation
### Using Antibody
- If you use a separate plugins file
```bash
echo "antibody github bilelmoussaoui/flatpak-zsh-completion" >> ${ZDOTDIR:-$HOME}/.zsh_plugins.txt
```- If you list your plugins within `.zshrc`
```bash
echo "antibody github bilelmoussaoui/flatpak-zsh-completion" >> ${ZDOTDIR:-$HOME}/.zshrc
```### Using Antigen
```bash
echo "antigen bundle bilelmoussaoui/flatpak-zsh-completion" >> ${ZDOTDIR:-$HOME}/.zshrc
```### Using Oh-My-Zsh
1. Clone this repository under the custom plugins directory
```bash
cd $ZSH_CUSTOM/plugins
git clone https://github.com/bilelmoussaoui/flatpak-zsh-completion flatpak
```1. Add `flatpak` to the plugins array in `.zshrc`
```bash
plugins+=(flatpak)
```### Using Zgen
- Place the following string on its own line in `.zshrc` directly after `source "${HOME}/.zgen/zgen.zsh"`
```bash
zgen load bilelmoussaoui/flatpak-zsh-completion
```### Using ZPlug
Add this string on its own line in `.zshrc` between `source ~/.zplug/init.zsh` and `zplug load`
```bash
zplug "bilelmoussaoui/flatpak-zsh-completion", nice:10
```## Getting started
Choose one of the methods below to activate the plugin on your system:
- Restart your terminal emulator
or
- Source the `.zshrc` file
```bash
source ${ZDOTDIR:-$HOME}/.zshrc
```## Donating
## License
This code is provided under the terms of the GNU General Public License, version 3.0. The full text describing the rights and responsibilities of those who make use of it, can be found in the [LICENSE](https://github.com/bilelmoussaoui/flatpak-zsh-completion/blob/master/LICENSE) file.
SPDX-License-Identifier: GPL-3.0-only