All Projects → kevva → Brightness

kevva / Brightness

Licence: mit
Change screen brightness

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Brightness

Matebookxpro Hackintosh
Hackintosh Solution for the Huawei Matebook X Pro
Stars: ✭ 257 (+39.67%)
Mutual labels:  brightness
Opencv Cheat Sheet
Opencv cheat sheet for C++
Stars: ✭ 30 (-83.7%)
Mutual labels:  brightness
Processing Imageprocessing
Collection of basic image processing algorithms for processing
Stars: ✭ 87 (-52.72%)
Mutual labels:  brightness
React Native System Setting
A library to access system setting, and change it easily. eg: volume, brightness, wifi
Stars: ✭ 319 (+73.37%)
Mutual labels:  brightness
Twinkle Tray
Easily manage the brightness of your monitors in Windows from the system tray
Stars: ✭ 496 (+169.57%)
Mutual labels:  brightness
Lightbulb
Reduces eye strain by adjusting gamma based on the current time
Stars: ✭ 1,153 (+526.63%)
Mutual labels:  brightness
Dell-S2716DGR-Calibration-Guide
Calibration guide for the Dell S2716DG and S2716DGR to get the best picture quality and colors
Stars: ✭ 33 (-82.07%)
Mutual labels:  brightness
Lunar
Intelligent adaptive brightness for your external monitors
Stars: ✭ 2,712 (+1373.91%)
Mutual labels:  brightness
Monitorian
A Windows desktop tool to adjust the brightness of multiple monitors with ease
Stars: ✭ 559 (+203.8%)
Mutual labels:  brightness
Night Shift On Unsupported Macs
Enable Night Shift on older Unsupported Macs
Stars: ✭ 86 (-53.26%)
Mutual labels:  brightness
Imaging
Imaging is a simple image processing package for Go
Stars: ✭ 4,023 (+2086.41%)
Mutual labels:  brightness
Midnight Lizard
Сustom color schemes for all websites
Stars: ✭ 406 (+120.65%)
Mutual labels:  brightness
Modernflyouts
A modern Fluent Design replacement for the old Metro themed flyouts present in Windows.
Stars: ✭ 1,173 (+537.5%)
Mutual labels:  brightness
Brightnessctl
A program to read and control device brightness
Stars: ✭ 306 (+66.3%)
Mutual labels:  brightness
Display manager
An open-source Python library which can modify your Mac's display settings manually or automatically.
Stars: ✭ 109 (-40.76%)
Mutual labels:  brightness
Ananas
An easy image editor integration for your Android apps.
Stars: ✭ 186 (+1.09%)
Mutual labels:  brightness
Image Processing
Image Processing Toolbox in Verilog using Basys3 FPGA
Stars: ✭ 31 (-83.15%)
Mutual labels:  brightness
Brightness Cli
Change the screen brightness
Stars: ✭ 182 (-1.09%)
Mutual labels:  brightness
Slimhud
Replacement for MacOS' volume, brightness and keyboard backlight HUDs.
Stars: ✭ 122 (-33.7%)
Mutual labels:  brightness
Menubar Brightness
MacOS app to change the screen brightness on the menubar.
Stars: ✭ 77 (-58.15%)
Mutual labels:  brightness


brightness


Change the screen brightness

Install

$ npm install brightness

Usage

const brightness = require('brightness');

brightness.get().then(level => {
	console.log(level);
	//=> 0.5
});

brightness.set(0.8).then(() => {
	console.log('Changed brightness to 80%');
});

API

.get()

Returns a Promise with the current brightness level.

.set(level)

Set brightness level.

level

Required
Type: number

A number between 0 and 1.

Related

License

MIT © Kevin Mårtensson

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].