This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/X11/xorg.conf.d/10-LVDS-gamma.conf | |
# Works on Debian and Ubuntu for at least the last 5 years | |
Section "Monitor" | |
Identifier "LVDS" | |
# Identifier "eDP-1" | |
Gamma 1.15 0.8 0.78 #tune to taste or accuracy | |
EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# SPDX-FileCopyrightText: 2025 Ilya Egorov <[email protected]> | |
# SPDX-License-Identifier: ISC | |
from __future__ import annotations | |
from collections import OrderedDict | |
from operator import methodcaller | |
from typing import TYPE_CHECKING |