Coder Social home page Coder Social logo

acpibacklight's Introduction

acpibacklight

PyPI version

A python library and script for changing brightness on Linux via acpi. Allows for easing animations too!

pip install acpibacklight

You can use the script acpi-ease-backlight to adjust the backlight with easing via acpi on your device. See acpi-ease-backlight --help for options.

CLI Usage

After installing via pip, use the script acpi-ease-backlight. Here is how you might use it:

$ acpi-ease-backlight -h        # see help
...

$ acpi-ease-backlight show      # show the current backlight value
4000

$ acpi-ease-backlight max       # show the your display's max backlight value
4882

$ acpi-ease-backlight set 2000  # set the backlight to 2000, over the default
                                # duration of 0.25 seconds and using the default
                                # easing function 'easeOutCubic'

$ acpi-ease-backlight -d 1 -e easeInOutQuad set 3000
                                # set the backlight to 3000 over duration of
                                # 1 second, using the easing function 'easeInOutQuad'

$ acpi-ease-backlight -d 0.5 dec 1000
                                # decrease the current backlight value by
                                # 1000 over a duration of 0.5 seconds

Library Usage

Instantiating

Use the class acpibacklight.AcpiBacklightControl for changing the backlight level in various ways. AcpiBacklightControl is designed to use python with statements similarly to file objects and python's open builtin:

from acpibacklight import AcpiBacklightControl

with AcpiBacklightControl() as ctrl:
    # set the brightness without animating
    ctrl.brightness = 2000

    # get max brightness on this device
    new_brightness = ctrl.max

    # You can also use the animate function on the AcpiBacklightControl.
    # See the docstring for kwargs
    ctrl.animate(new_brightness, duration=0.75)

Alternatively, you can construct, then open, then close the AcpiBacklightControl:

ctrl = AcpiBacklightControl()
ctrl.open()
ctrl.animate(ctrl.brightness - 1000)
ctrl.close()

If you have multiple ACPI backlight devices, specify the name when constructing the AcpiBacklightControl. Otherwise, the default is the first device directory found.

ctrl = AcpiBacklightControl(device_dir='intel_backlight')

Easing Functions

You can pass an easing function to be used in animate() by the easing_func keyword arg. This package uses PyTweening for its default animation and the CLI, so you can easily pass one of those:

import pytweening
ctrl.animate(2345, easing_func=pytweening.easeInOutBounce)

Finally, if you want to create and pass your own easing function, it should take one paramater (time) between 0 and 1, and return a value between 0 and 1. For instance, a linear easing function would look like:

def linear_easing(t):
  # t is always in the range [0, 1]
  return t

# ...
ctrl.animate(1234, easing_func=linear_easing)

acpibacklight's People

Contributors

aabmass avatar

Watchers

 avatar  avatar  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.