Metadata-Version: 1.1
Name: osxmpdkeys
Version: 1.0.3
Summary: Control mpd with the OS X media keys.
Home-page: https://github.com/pushrax/osxmpdkeys
Author: Justin Li
Author-email: jli@j-li.net
License: MIT
Description: ==========
        osxmpdkeys
        ==========
        
        Control mpd with the OS X media keys.
        
        Installation
        ------------
        
        To install osxmpdkeys with pip, use:
        
        .. code:: bash
        
            $ pip install osxmpdkeys
        
        Usage
        -----
        
        In the simplest case, just run ``mpdkeys``. The default mpd host address is ``localhost:6600``.
        
        .. code::
        
            usage: mpdkeys [-h] [--host HOST] [--port PORT]
        
            optional arguments:
            --host HOST  mpd host address
            --port PORT  mpd host port
        
        If you want to have mpdkeys start automatically upon login,
        you can create a LaunchAgent like so:
        
        .. code::
        
          $ cat <<EOF> ~/Library/LaunchAgents/com.github.pushrax.osxmpdkeys.plist
        
          <?xml version="1.0" encoding="UTF-8"?>
          <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
          <plist version="1.0">
            <dict>
              <key>Label</key>
              <string>com.github.pushrax.osxmpdkeys</string>
              <key>Program</key>
              <string>/usr/local/bin/mpdkeys</string>
              <key>RunAtLoad</key>
              <true/>
              <key>KeepAlive</key>
              <true/>
            </dict>
          </plist>
          EOF
        
        Next time you log in, launchd will pick up the configuration automatically.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Multimedia :: Sound/Audio :: Players
