Metadata-Version: 2.1
Name: streamdeckd
Version: 0.1.0
Summary: StreamDeck Daemon
Home-page: UNKNOWN
Author: stuxcrystal
License: UNKNOWN
Description: # 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.
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: http
Provides-Extra: pulseaudio
