Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Stats | 15,417 | 3 days ago | 10 | mit | Swift | |||||
macOS system monitor in your menu bar | ||||||||||
Espurna | 2,868 | 7 days ago | 313 | gpl-3.0 | C++ | |||||
Home automation firmware for ESP8266-based devices | ||||||||||
Dht Sensor Library | 1,741 | 4 months ago | 23 | mit | C++ | |||||
Arduino library for DHT11, DHT22, etc Temperature & Humidity Sensors | ||||||||||
Osx Cpu Temp | 766 | 1 | 2 years ago | 1 | March 03, 2021 | 15 | gpl-2.0 | C | ||
Outputs current CPU temperature for OSX | ||||||||||
Lovelace Thermostat Dark Card | 694 | 2 days ago | 34 | mit | TypeScript | |||||
🌡 Thermostat card with a round and black feel to it | ||||||||||
Mitemperature2 | 543 | 5 months ago | 16 | Python | ||||||
Read the values of the Xiaomi Mi Bluetooth Temperature sensor 2 including custom encrypted format. | ||||||||||
W1thermsensor | 483 | 29 | 2 | 3 months ago | 24 | January 25, 2021 | 8 | mit | Python | |
A Python package and CLI tool to work with w1 temperature sensors like DS1822, DS18S20 & DS18B20 on the Raspberry Pi, Beagle Bone and other devices. | ||||||||||
Counterfeit_ds18b20 | 458 | 6 months ago | 12 | apache-2.0 | C++ | |||||
How to tell original from fake DS18B20 temperature sensors. | ||||||||||
Awesome Arduino | 453 | 5 years ago | 3 | Shell | ||||||
A curated list of awesome Arduino hardwares, libraries and softwares with update script | ||||||||||
St_anything | 425 | 2 days ago | 4 | gpl-3.0 | C++ | |||||
ST_Anything is an Arduino library, sketch, and Device Type that works with your SmartThings ThingShield to create an all-in-one SmartThings device. |
gummy is a screen manager for Linux. It was mainly written to allow adaptive screen adjustments, but allows manual configuration as well.
It provides a CLI for adjusting:
These settings can be set manually or automatically, based on any of these inputs:
Distro | Location |
---|---|
Debian/Ubuntu | GitHub releases |
Arch | AUR (stable - latest) |
NixOS | nixpkgs |
For NixOS users: you must add the following line to configuration.nix
: services.udev.packages = [ pkgs.gummy ];
gummy uses the ddcutil library on your system for managing backlights of external monitors. The kernel module i2c-dev is needed if you want this functionality.
i2c-dev is built-in in some distributions. Otherwise, you must load it explicitly. This guide shows you how to load it automatically.
You can quickly load it with the command: sudo modprobe i2c-dev
. This method does not survive a system reboot, however.
Until ddcutil 1.4+, you must add your user to the "i2c" group for rootless operation.
sudo usermod <user-name> -aG i2c
Generally, a reboot is recommended to ensure gummy can operate your screens without elevated privileges.
Type gummy -h
to print all the available options.
Screen settings are applied to all screens, unless the -s
option with a screen number (starting from 0) is provided.
All relevant settings can be increased or decreased by prefixing the value with a "+" or "-" sign.
Quick guide:
| Command | Explanation |
|---------|--------|
| gummy start
| Starts the background process responsible for screen adjustments. |
| gummy -b 50
| Sets backlight brightness to 50%. |
| gummy -b +50
| Increases backlight brightness by 50%. |
| gummy -t 3400
| Sets the color temperature to 3400K. |
| gummy -B 1
| Adjusts backlight brightness based on screen lightness. |
| gummy -P 1
| As above, but with pixel brightness. |
| gummy -T 1
| As above, but with color temperature. |
| gummy -B 2
| Adjusts backlight brightness based on ALS data. (If you have an ambient light sensor.) |
| gummy --als-scale 1.5
| Multiplies the ALS signal by 1.5. This can be useful for calibration. |
| gummy -T 3 -y 06:00 -u 18:00
| Enables time-based temperature. Temperature will gradually transition from 6500K to 3200K (by default), one hour before 18:00. |
If you experience screen flickering: disable any program that might change screen gamma, such as Redshift. Some system daemons might also cause screen flickering, such as colord. Check if it's running in your system, and try disabling it. I may add functionality to disable gamma control in the future (while keeping backlight control), so that gummy can work with any other gamma-adjusting software.
If backlight adjustments don't work, make sure DDC/CI is enabled in your screen's control panel. Your screen might not support DDC/CI: in that case, you might want to use pixel brightness as a substitute.
System requirements:
sudo apt install build-essential cmake libxcb1-dev libxcb-randr0-dev libxcb-shm0-dev libxcb-image0-dev libsystemd-dev libsdbus-c++-dev libddcutil-dev
git clone https://github.com/Fushko/gummy.git --depth 1 && cd gummy
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE="Release"
cmake --build . -j && sudo cmake --install .
This project makes (hopefully good) use of these excellent libraries:
Temperature adjustments use the color ramp provided by Ingo Thies for Redshift.
You can buy me a coffee at: https://coindrop.to/fushko
Copyright 2021-2023 Francesco Fusco
Released under the terms of the GNU General Public License v3.0.