https://github.com/zquestz/ppa
zquestz's PPA
https://github.com/zquestz/ppa
Last synced: about 1 year ago
JSON representation
zquestz's PPA
- Host: GitHub
- URL: https://github.com/zquestz/ppa
- Owner: zquestz
- License: mit
- Created: 2025-04-01T23:54:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-18T01:18:00.000Z (about 1 year ago)
- Last Synced: 2025-06-18T01:36:43.564Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 8.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zquestz's PPA
A personal package archive hosted on GitHub Pages for distributing custom Ubuntu packages.
## Available Packages
- [plank-reloaded](https://github.com/zquestz/plank-reloaded) - Plank Reloaded is a fork of the original [Plank](https://launchpad.net/plank) project, providing a simple dock for X11 desktop environments. While development began with a focus on Cinnamon, we now actively support multiple desktop environments including MATE and Xfce. Wayland is not supported at this time.
## Installation
Add the repository and install packages for Ubuntu and Debian:
### Ubuntu
```bash
# Add the repository
curl -fsSL https://zquestz.github.io/ppa/ubuntu/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/zquestz-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/zquestz-archive-keyring.gpg] https://zquestz.github.io/ppa/ubuntu ./" | sudo tee /etc/apt/sources.list.d/zquestz.list
sudo apt update
# Install a package
sudo apt install plank-reloaded
```
### Debian
```bash
# Add the repository
curl -fsSL https://zquestz.github.io/ppa/debian/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/zquestz-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/zquestz-archive-keyring.gpg] https://zquestz.github.io/ppa/debian ./" | sudo tee /etc/apt/sources.list.d/zquestz.list
sudo apt update
# Install a package
sudo apt install plank-reloaded
```
## License
This repository is available under the [MIT License](LICENSE).
## References
This PPA was created using information from:
- [Creating a PPA repository on GitHub Pages](https://assafmo.github.io/2019/05/02/ppa-repo-hosted-on-github.html)
- [GPG key management for package repositories](https://makandracards.com/makandra/37763-gpg-extract-private-key-and-import-on-different-machine)
- [Creating a signed APT repository](http://blog.jonliv.es/blog/2011/04/26/creating-your-own-signed-apt-repository-and-debian-packages/)
- [Custom and authenticated APT repositories](https://medium.com/sqooba/create-your-own-custom-and-authenticated-apt-repository-1e4a4cf0b864)
- [VSCode PPA on GitHub](https://github.com/tagplus5/vscode-ppa)