Linux PyQt tray application to control OctoPrint instances
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Thomas Buck 45c343da22 update status with every 2nd webcam image. don't allow setting 0 delay for webcam / status. 2 лет назад
.github/workflows remove pylint action, extend readme, try to fix linux ci build 3 лет назад
data add win icon, bundle pyinstaller file loading 3 лет назад
dist bump version number to 0.4 3 лет назад
src update status with every 2nd webcam image. don't allow setting 0 delay for webcam / status. 2 лет назад
.gitignore started first work on creating packages for different OSs 3 лет назад
README.md support running in window, without system tray 2 лет назад
build_arch.sh started first work on creating packages for different OSs 3 лет назад
build_linux.sh linux build without dist folder in zip 3 лет назад
build_mac.sh more ci testing 3 лет назад
build_unix.sh remove pylint action, extend readme, try to fix linux ci build 3 лет назад
build_win.sh add win icon, bundle pyinstaller file loading 3 лет назад

README.md

OctoTray Linux Qt client

This is a simple Qt application living in the system tray. It allows remote-control and observation of 3D printers running OctoPrint. For the implementation it is using PyQt5. Automatic builds are provided for Linux, Windows and macOS.

Build Distribution Packages

For more take a look at OctoTray on my website.

If the system tray is not available (or when passing the ‘-w’ parameter) the main menu will instead be shown in a window.

Building / Running

You have different options of building and running OctoTray:

From Source

OctoTray can simply be run from the checked out repository, if all dependencies are installed.

./src/octotray.py

For this you need Python 3 as well as PyQt5.

Pre-Built Windows Binary

To run OctoTray on MS Windows without much hassle, a pre-built binary is provided, made with PyInstaller and GitHub Actions.

Simply download the latest version from the GitHub Actions tab, in the artifacts of the most recent build. You need to be logged in for this!

You can also find binaries for each release on GitHub.

To create your own binary from source, simply run:

bash build_win.sh

The resulting executable will be in ‘build/dist/win’ as well as ‘build/dist/OctoTray_Win.zip’.

Pre-Built macOS Application Bundle

For Mac users, a pre-built application bundle is provided, made with py2app and GitHub Actions.

Simply download the latest version from the GitHub Actions tab, in the artifacts of the most recent build. You need to be logged in for this!

You can also find binaries for each release on GitHub.

To create your own bundle from source, simply run:

./build_mac.sh

The generated bundle will then be in ‘build/mac/dist/OctoTray.app’ as well as ‘build/dist/OctoTray_Mac.zip’.

Arch Linux Package

Create and install an Arch Linux package like this:

./build_arch.sh
sudo pacman -U build/dist/octotray-0.3-1-any.pkg.tar.xz

Then run it from your desktop environment menu or even add it to the autostart there.

Manual Installation on Linux

You can also install the required files manually, which should work for most other Linux distribution and Unices:

sudo ./build_unix.sh

After logging out and back in, you should find OctoTray in the menu of your graphical desktop environment. Take a look at the script to see exactly what is installed where.

Pre-Built Linux Binary

For completeness, a single pre-build Linux binary is also provided on GitHub, made with PyInstaller like the Windows build. It is however not recommended for productive use.

To create it yourself, simply run:

./build_linux.sh

The resulting binary will be in ‘build/linux/dist’ as well as ‘build/dist/OctoTray_Linux.zip’.