Skip to content

ddccontrol/ddccontrol

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a43b4c3 · Jan 31, 2024
Oct 15, 2023
Oct 5, 2018
Oct 15, 2023
Jun 24, 2018
Jan 29, 2024
Oct 19, 2023
Jun 21, 2018
Feb 6, 2018
May 5, 2021
Sep 5, 2012
Oct 15, 2023
Oct 10, 2010
Dec 27, 2017
Oct 15, 2023
Mar 31, 2018
May 5, 2021
Feb 13, 2010
Jan 31, 2024

Repository files navigation

Build Status

DDC/CI control

DDCcontrol is a software used to control monitor parameters, like brightness, contrast, RGB color levels and others.

DDCcontrol consists of:

  • ddccontrol - command-line tool for monitor parameters control
  • gddccontrol - GUI tool for monitor parameters control

Installation

The most convenient way to install DDCcontrol is to use packages from official distribution repositories.

Manual installation is more complicated, but contains latest version of software and more monitor profiles.

Installation from official packages

DDCcontrol tools, ddccontrol and gddccontrol can be installed from official distribution repositories with following command:

  • on Ubuntu/Debian: sudo apt install ddccontrol gddccontrol ddccontrol-db i2c-tools
  • on Fedora: sudo dnf install ddccontrol ddccontrol-gtk
  • on openSUSE: sudo zypper in ddccontrol

You might need to restart your system after installing i2c-tools.

Installation from sources

Install build dependencies:

  • on Ubuntu: sudo apt install intltool i2c-tools libxml2-dev libpci-dev libgtk2.0-dev liblzma-dev
  • on Solus: sudo eopkg install -c system.devel
    sudo eopkg install autoconf automake intltool i2c-tools m4 diffutils libtool-devel xz-devel pciutils-devel libxml2-devel libgtk-2-devel
  • on others: TODO

Clone, build and install built version:

git clone https://github.com/ddccontrol/ddccontrol.git
cd ddccontrol
./autogen.sh
./configure --prefix=/usr/local/ --sysconfdir=/etc --libexecdir=/usr/local/lib
make
sudo make install

Monitor database is required for proper functionality. See for ddccontrol-db installation.

Contributing to the Monitor Database

Follow the instructions on https://github.com/ddccontrol/ddccontrol-db/blob/master/doc/how-to-add-a-monitor.md for inclusion. It often merely involves adapting a few standard capabilities as many pull requests show.

Usage

From GUI using gddccontrol

gddccontrol is a graphical utility for monitor configuration. It is called Monitor Settings in list of applications.

Following configuration is needed to allow non-root user to use gddccontrol:

sudo adduser $USER i2c
sudo /bin/sh -c 'echo i2c-dev >> /etc/modules'

Utility can launched directly from commandline:

sudo gddccontrol

From command line using ddccontrol

ddccontrol allows monitor configuration directly from commandline. To probe I2C devices to find monitor buses use:

sudo ddccontrol -p

To read value of control 0x10 (brightness on VESA compliant monitors) for device dev:/dev/i2c-4:

sudo ddccontrol -r 0x10 dev:/dev/i2c-4

To set value of control 0x10 (brightness on VESA compliant monitors) to 75 for device dev:/dev/i2c-4:

sudo ddccontrol -r 0x10 -w 75 dev:/dev/i2c-4

See ddccontrol -h for more information.

License

The project is licensed under GNU General Public License v2.0 license. See COPYING for details.