Unofficial streamdeck+ software, made using Python (GUI made using Python's Tkinter)
Find a file
2025-05-29 16:23:28 -04:00
backgroundpacks.zip Add files via upload 2024-04-25 15:27:45 -04:00
baseicons.zip Added base icons for fast installs 2024-04-25 15:26:00 -04:00
fonts.zip Add files via upload 2024-04-25 15:26:56 -04:00
icon.png Add files via upload 2024-04-25 15:28:01 -04:00
install.py Update install.py 2024-06-22 15:35:47 -04:00
LICENSE Create LICENSE 2024-04-27 18:57:25 -04:00
README.md Update README.md 2025-05-29 16:23:28 -04:00
requirements.txt fix: fix #1 2024-04-30 17:40:27 +02:00
sdimageutil.py Create sdimageutil.py 2024-06-22 14:46:59 -04:00
sdplus.py Update sdplus.py 2024-06-22 15:35:21 -04:00
sdutil.py Create sdutil.py 2024-06-22 14:46:26 -04:00
updateinfo.txt Update updateinfo.txt 2024-06-22 14:49:12 -04:00
version.txt Create version.txt 2024-05-07 09:21:53 -04:00

WARNING: THIS SOFTWARE IS IN ITS BETA PHASE, EXPECT ISSUES/INCONVENIENCES UNTIL THE FIRST RELEASE HAS BEEN MADE.

THE INSTALLER SYSTEM IS IMPLEMENTED AND WORKING (Jan 2025), IF YOU WANT TO TRY THE SOFTWARE OUT IN ITS EARLY STATE. THE AUTOUPDATE SYSTEM IS (PROBABLY) BROKEN(?)

(ive decided to name this project pydeck+, btw)

This software was started as a project for personal use but adapted to be easy(ish) to use by others, so not everything will be as easy as it is in the official Elgatio software.

Installation

Download install.py and install all necessary packages (use pip install -r requirements.txt) Run install.py When it asks if you want to download icon and background packs, you can choose not to download any.

Usage

Once you've finished the installation process, you're good to go. Configuring a button, the screen, or a dial is as simple as clicking on it in the GUI and entering whatever you'd like.

Objects

screen

Events

  • touchShort: short touch, triggered when the screen is touched for a short amount of time
  • touchLong: long touch, triggered when the screen is touched for a longer amount of time
  • up: upwards swipe, triggered when you swipe up on the screen
  • down: downwards swipe, triggered when you swipe down on the screen
  • left: left swipe, triggered when you swipe left on the screen, sets to page.previous on page creation
  • right: right swipe, triggered when you swipe right on the screen, sets to page.next on page creation

Properties

  • text: the text to display on the screen
  • image: the background to use. will be resized to 800x100 (the size of the touchscreen)

button

Events

  • press: triggered when you press a button
  • release: triggered when you release a button
  • pushShort: triggered when you push a button for a short time (in most cases, you should avoid using press and pushShort at the same time)
  • pushLong: triggered when you push a button for a longer time (in most cases, you should avoid using press and pushLong at the same time)

Properties

  • iconOn: the image/icon to use on this button (iconOff was never implemented). will be resized to 120x120 (the size of buttons)
  • text: the text to display on the button

dial

Events

  • press: triggered when you push a dial
  • release: triggered when you release a dial
  • clockwise: triggered when you rotate a dial clockwise
  • counterclockwise: triggered when you rotate a dial counterclockwise
  • up: triggered when you swipe up over a dial's icon, blocks screen's up event if set
  • down: triggered when you swipe down over a dial's icon, blocks screen's down event if set
  • left: triggered when you swipe left over a dial's icon, blocks screen's left event if set
  • right: triggered when you swipe right over a dial's icon, blocks screen's right event if set

actions (UNPUBLISHED BETA)

You can make your own actions by making a new .json file in .streamdeck/actions

Planned features

  • Integrated spotify support - I may not work on this for a while as I no longer use Spotify
  • Icon picker
  • Drag-and-drop actions
  • Premade actions (for OS shortcuts, some games, etc)
  • Plugins
  • User-made action support
  • Rounded UI corners Done
  • Break main script up into multiple Done
  • Make a better/mor reliable autoupdate system Done
  • Improve install script Done
  • Fix migration to slightly more seamlessly transition from Windows' Elgato software to this software
  • Easier profile switching
  • More user friendly action customization