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); }) } -