From b3e339c60f549cd12927fd75605d4708305164b7 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 24 May 2025 10:05:54 +0200 Subject: [PATCH] fix hyprland spelling --- .config/ags/services/brightness.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/ags/services/brightness.js b/.config/ags/services/brightness.js index 86962d83c..1800d162d 100644 --- a/.config/ags/services/brightness.js +++ b/.config/ags/services/brightness.js @@ -115,7 +115,7 @@ async function listDdcMonitorsSnBus() { sn = line.split(':')[1].trim(); // Sometimes sn can be empty. In this cases let's relay on binary sn } else if (line.startsWith('Binary') && !sn) { - // Make the serial number upper case except for the leading '0x' since Hyperland + // Make the serial number upper case except for the leading '0x' since Hyprland // seems to use upper case for the rest of the string and ddcutil uses // lower case for all the binary sn sn = '0x'+line.split('(')[1].slice(2,-1).toUpperCase();