Skip to main content

A library to create macros on a linux system

Project description

Python library for creating system-wide macros on a linux machine. pyxmacros leverages the well known pyxhook library to connect to all X servers running on the machine and runs registered callback functions on desired keypress. Can also be triggered by lirc keypresses if desired.

usage

import xmacros

def run_task(key):
    print "key pressed: %s" %str(key)

if __name__ == "__main__":
    macro = xmacros()
    macro.register_action(key=190, mod=xmacros.MOD_ALT_L, callback=run_task)

    while True:
        pass

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyxmacros-0.6.tar.gz (7.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page