Linux PyQt tray application to control OctoPrint instances
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- #!/bin/sh
-
- rm -rf build/linux
- mkdir -p build/linux
-
- cp src/* build/linux/
- cp data/* build/linux/
-
- cd build/linux
- pyinstaller --noconfirm --onefile --name=OctoTray --windowed --add-data="octotray_icon.png:." octotray.py
-
- zip -r OctoTray_Linux.zip dist/*
-
- cd ../..
- mkdir -p build/dist/linux
- cp -r build/linux/OctoTray_Linux.zip build/dist/linux/
|