Metadata-Version: 2.1
Name: streamdeckd
Version: 0.1.0
Summary: StreamDeck Daemon
Home-page: UNKNOWN
Author: stuxcrystal
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: aiorun
Requires-Dist: crossplane
Requires-Dist: pillow
Requires-Dist: streamdeck
Provides-Extra: all
Requires-Dist: aiohttp ; extra == 'all'
Requires-Dist: jsonpath-ng ; extra == 'all'
Requires-Dist: pulsectl ; extra == 'all'
Provides-Extra: http
Requires-Dist: aiohttp ; extra == 'http'
Requires-Dist: jsonpath-ng ; extra == 'http'
Provides-Extra: pulseaudio
Requires-Dist: pulsectl ; extra == 'pulseaudio'

# streamdeckd
Control your streamdeck with a configuration file

This is a very, very early version.

## Installation and Usage

Install this via pip.
```
pip install streamdeckd
```

Start with this example configuration:

```nginx
# In this example:
# Filename: streamdeckd.conf

rescan 10s;

streamdeck '*' default {
    menu "Main" default {
        text "{x} {y}";

        button 0 0 {
            text "Close";

            released {
                exit;
            }
        }
    }
}
```

Run the configuration with

```sh
streamdeckd run -f streamdeckd.conf
```

Look my configuration-file at example/streamdeckd.conf which I am using myself.


