From a94172d9cd860113926e2c6fd7375c547564dc76 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 30 May 2024 20:57:59 +0700 Subject: [PATCH] remove debug print --- .config/ags/services/darkmode.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/.config/ags/services/darkmode.js b/.config/ags/services/darkmode.js index 35cc8118..b0f54be3 100644 --- a/.config/ags/services/darkmode.js +++ b/.config/ags/services/darkmode.js @@ -34,8 +34,6 @@ export async function startAutoDarkModeService() { if (fromTime == toTime) return; const currentDateTime = GLib.DateTime.new_now_local(); const currentTime = [currentDateTime.get_hour(), currentDateTime.get_minute()]; - // console.log(currentTime, fromTime, toTime); darkMode.value = timeInRange(currentTime, fromTime, toTime); }) } -