GithubHelp home page GithubHelp logo

keyboardwait's Introduction

trigger.py

This is a small script to trigger some action based on a user-defined period of keyboard inactivity. It must be run as root since it monitors the keyboard regardless of focus.

Dependencies

Depends on the keyboardpackage. Install with pip3 install keyboard or similar.

Usage

Invoke the script as follows:

./trigger.py --timeout <some whole number of seconds> \
             --trigger-action <some shell command to be run> \
             --reset-action <some other shell command to be run>

The script can also be invoked with the --help flag, which will provide basic usage instructions.

Both trigger-action and reset-action must be quoted if they contain spaces.

Providing reset-action is optional, but probably necessary in most cases, unless the trigger-action can meaningfully run several times in a row.

Examples

Trigger a screen locker (slock) after 1 minute of inactivity (careful, it will require the root password!):

./trigger.py -t 60 -a slock

Disable the keyboard backlight after 30 seconds, restoring it on keyboard input. xset led * must work with the keyboard:

./trigger.py -t 30 -a 'xset led off' -r 'xset led on'

keyboardwait's People

Contributors

booski avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.