twinkle-tray VS ddcctl

Compare twinkle-tray vs ddcctl and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
twinkle-tray ddcctl
19 22
4,584 1,807
- -
3.7 0.0
9 days ago over 1 year ago
JavaScript C
MIT License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

twinkle-tray

Posts with mentions or reviews of twinkle-tray. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-12.

ddcctl

Posts with mentions or reviews of ddcctl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-15.
  • TIL there are apps that can control your monitor without touching the buttons on it
    9 projects | /r/todayilearned | 15 Apr 2023
    There are some other command line based open-source alternatives as well, like ddctl and m1ddc - the former only works on Intel, the latter on M1 Macs (M2 Pro and HDMI is not supported). Lunar has great CLI support as well for those who want a command-line based solution.
  • Let's talk: name your favorite accessories that improved your PC/desk area.
    5 projects | /r/buildapc | 18 Feb 2023
    https://github.com/kfix/ddcctl is what you are looking for! It works on my dell and asus monitors at least.
  • Mac mini m2 pro not working with dell ultrasharp u3223qe over usb
    3 projects | /r/macmini | 8 Feb 2023
    Only TB supports DDC? https://github.com/kfix/ddcctl
  • Monitor controls for Mac OS X command line
    1 project | news.ycombinator.com | 1 Feb 2023
  • The Apple TV expects you to have an iPhone in order to accept new iCloud terms and conditions
    5 projects | /r/technology | 16 Jan 2023
  • Ask HN: Best tips for reducing eyestrain while coding with astigmatism?
    3 projects | news.ycombinator.com | 19 Dec 2022
    I received the same diagnostic in 2017, which coincided with the year I got my first external monitor for my MacBook. Headaches and eye pain became a more common occurence in the first weeks, until I stumbled upon ddcctl [0] and the fact that monitor brightness can be changed from the OS.

    That's when I developed the first version of Lunar (https://lunar.fyi) to adapt brightness automatically throughout the day based on the sun position in the sky. (reading the light sensor was not possible at the time)

    That combined with Night Shift (macOS native version of f.lux) fixed most of my problems.

    I also tried blue light filter glasses but the only effect they had was removing more money from my savings. I feel like this is just modern day snake oil for computer workers.

    In the end, what fixed all of my problems was a LASIK [1] operation (well actually PRK because I had only a small abberation). I still recommend this to all my friends and relatives who are always complaining about their vision. It did change my life.

    I still cringe when someone turns on an overhead lightbulb though, I never use those in my home. Turns out this wasn't my astigmatism, it's just that most LED bulbs are simply too bright single point lights.

    I fit my home with TRADfri warm light lamps hidden behind sofa/door/desk [2], WLED-powered [3] LED strips and simple string lights (like you can see in the front page video on https://lowtechguys.com/volum/)

    [0] https://github.com/kfix/ddcctl

    [1] https://en.wikipedia.org/wiki/LASIK

    [2] https://www.ikea.com/gb/en/p/tradfri-remote-control-kit-smar...

    [3] https://kno.wled.ge/

  • Ask HN: What is the best income stream you have created till date?
    3 projects | news.ycombinator.com | 9 Dec 2022
    macOS apps which I share at https://lowtechguys.com/ bring me $7k/month on average at the moment, and it keeps growing.

    It started in 2017 when I shared the first free and open source version of Lunar (https://lunar.fyi/), an app for controlling monitors.

    At that time, there was only a command line for doing this stuff (https://github.com/kfix/ddcctl) and I wanted a more visual way of changing the brightness. So I learned Swift, learned how to bridge the ddcctl C code and call it from Swift, then made a rough interface and published it: https://www.producthunt.com/products/lunar#lunar-5

    It turned out people did have a need for this and asked if they could donate. I set up a Buy me a Coffee page and in 4 years collected about $5k in donations. That's a lot of money for a Romanian.

    When Apple Silicon appeared, Lunar didn't work anymore because the whole hardware arrangement and drivers were different, and there was no documentation on how to send I²C data. I took the plunge and quit my stressful job, bought an M1 MacBook and reverse engineered the I²C communication: https://alinpanaitiu.com/blog/journey-to-ddc-on-m1-macs/

    Then published Lunar 4 as a Free version with a Pro paid upgrade. I was reluctant with this, didn't think anyone would buy it, but to this day I'm able to be unemployed and put my ideas into practice because of it.

  • What are some useful cli tools that arent popular?
    23 projects | /r/commandline | 4 Jul 2022
    ddcctl - DDC monitor controls for the OSX command line
  • Dasung Macos shortcuts on M1
    2 projects | /r/eink | 2 Jul 2022
    Not really sure if ddcctl could help or is related to ddcutil, but in all case I had no chance with it.
  • HDMI Firewall
    9 projects | news.ycombinator.com | 21 Jun 2022
    No worries! The same sentiment is what keeps me enthusiastic about programming day after day :)

    So computer monitors have support for a communication protocol called Display Data Channel which is normally used by the host (Mac, PC) to get info about supported resolutions, frame rates, signal timing etc.

    On top of that, a command interface has been created called MCCS or Monitor Control Command Set [1] which allows changing brightness, volume, input and a ton of other aspects of the monitor, by sending specific bytes through the cable. That cable can be HDMI, DisplayPort, Thunderbolt, VGA, DVI. It doesn’t matter, as long as it has dedicated wires to carry the I2C signal.

    I2C is the 2-wire communication protocol used by DDC, and it basically defines things like “a pulse of 5V (volts) of x milliseconds followed by 0V of y milliseconds means the 0 bit. The 1 bit is represented by a pulse of 5V of 2x milliseconds”. It’s a bit more complex than that, also defining TCP-like features with data frames and ACK packets, but you get the idea. It’s something that both devices agree on so that they can send raw bytes using 5 volt pulses.

    I’ve created Lunar as an adaptive brightness app for macOS after finding out about a little CLI called ddcctl: https://github.com/kfix/ddcctl

    That’s where I learned how DDC packets look like, where to place the payload (brightness value between 0 and 100, input ID, etc) and how to write that to the monitor using the macOS I2C APIs.

    When Apple Silicon came out, none of that was possible anymore so I had to go looking around kernel assembly and private macOS frameworks for “the Apple Silicon way” of writing data through I2C.

    If you’re also curious how I learned that, it’s a very cool domain called “reverse engineering” and I learned it while working as a Malware Researcher at Bitdefender. A bit hard to get started, but so many gems to discover once you know how to open binaries in IDA/Hopper and look around their disassembled code.

    [1] https://milek7.pl/ddcbacklight/mccs.pdf

What are some alternatives?

When comparing twinkle-tray and ddcctl you can also consider the following projects:

vidSmooth - smooth out any video

ddcutil - Control monitor settings using DDC/CI and USB

spectrum - Simple, powerful online communities.

ddccontrol - DDC Control

lunarsensor - Server that mimics a Lunar ambient light sensor, with support for multiple lux data sources

winddcutil - Windows implementation of the ddcutil Linux program for querying and changing monitor settings, such as brightness and color levels.

Lunar - Intelligent adaptive brightness for your external monitors

vincent-van-git - Use your Github commit history as a canvas!

OSX_GVT-D - Guide to pass iGPU to MacOS KVM guest.

react-windows-ui - Build Windows native look & feel apps using ReactJS. Provides a set of accessible, reusable and composable react components that make it super easy to create websites and apps.

display-switch - Turn a $30 USB switch into a full-featured multi-monitor KVM switch