Skip to content

Commit

Permalink
lenovo legion 7 slim 15ach6: remove brightness service
Browse files Browse the repository at this point in the history
  • Loading branch information
rhoriguchi committed Jul 9, 2023
1 parent 47dca15 commit 7f46848
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions lenovo/legion/15ach6/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,4 @@ in {

# √(3840² + 2160²) px / 15.60 in ≃ 282 dpi
services.xserver.dpi = 282;

# https://wiki.archlinux.org/title/backlight#Backlight_is_always_at_full_brightness_after_a_reboot_with_amdgpu_driver
systemd.services.fix-brightness = {
before = [
"systemd-backlight@backlight:${
if lib.versionOlder kernelPackages.kernel.version "5.18" then "amdgpu_bl0" else "nvidia_wmi_ec_backlight"
}.service"
];
description = "Convert 16-bit brightness values to 8-bit before systemd-backlight applies it";
script = ''
BRIGHTNESS_FILE="/var/lib/systemd/backlight/${
if lib.versionOlder kernelPackages.kernel.version "5.18" then
"pci-0000:05:00.0:backlight:amdgpu_bl0"
else
"platform-PNP0C14:00:backlight:nvidia_wmi_ec_backlight"
}"
BRIGHTNESS=$(cat "$BRIGHTNESS_FILE")
BRIGHTNESS=$(($BRIGHTNESS*255/65535))
BRIGHTNESS=''${BRIGHTNESS/.*} # truncating to int, just in case
echo $BRIGHTNESS > "$BRIGHTNESS_FILE"
'';
serviceConfig.Type = "oneshot";
wantedBy = [ "multi-user.target" ];
};
}

0 comments on commit 7f46848

Please sign in to comment.