https://github.com/aarnt/octoxbps
A Qt-based XBPS front end
https://github.com/aarnt/octoxbps
qt trident voidlinux xbps
Last synced: about 1 month ago
JSON representation
A Qt-based XBPS front end
- Host: GitHub
- URL: https://github.com/aarnt/octoxbps
- Owner: aarnt
- License: gpl-2.0
- Created: 2015-07-26T23:55:02.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2025-02-11T14:12:39.000Z (3 months ago)
- Last Synced: 2025-03-31T06:09:22.462Z (about 2 months ago)
- Topics: qt, trident, voidlinux, xbps
- Language: C++
- Homepage:
- Size: 869 KB
- Stars: 78
- Watchers: 6
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
## This is OctoXBPS, a powerful XBPS front end using Qt libs.

**OctoXBPS** is a Qt based GUI front end to the [XBPS](https://github.com/void-linux/xbps) package manager, derived from [OctoPkg](http://tintaescura.com/projects/octopkg).
It consists of a lxqt-sudo clone called [qt-sudo](https://github.com/aarnt/qt-sudo/) used to gain root privileges, a package browser application used
to search, install, remove and update packages and a system tray icon [notifier](https://github.com/aarnt/octoxbps/tree/master/notifier) to notify the user about package changes.
The project is compatible with [Void Linux](https://voidlinux.org/).### You can use XBPS to install the latest OctoXBPS version available in your distro:
```
# xbps-install -S octoxbps
```### Follow the steps bellow to compile the latest source code (you'll need curl, git and qt6 packages):
```
$ git clone https://github.com/aarnt/qt-sudo
$ cd qt-sudo
$ qmake6
$ make
# make install
$ cd ..
$ git clone https://github.com/aarnt/octoxbps
$ cd octoxbps/notifier
$ qmake6
$ make
# make install
$ cd ..
$ qmake6
$ make
# make install
```### In order to run OctoXBPS main package browser:
```
$ octoxbps
```### To execute OctoXBPS system tray notifier:
```
$ octoxbps-notifier
```You'll also need "curl" and "sudo" packages installed and your user to be a member of the wheel group.
Enjoy!