From e63d9cc09427813611fb9b58d796d9b8cb5a8709 Mon Sep 17 00:00:00 2001 From: Ven0m0 <82972344+Ven0m0@users.noreply.github.com> Date: Tue, 28 Apr 2026 22:05:45 +0000 Subject: [PATCH] Refactor Fullscreen.ahk to use proven helper function Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- ahk/Fullscreen.ahk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ahk/Fullscreen.ahk b/ahk/Fullscreen.ahk index 0b89c80..37e3857 100644 --- a/ahk/Fullscreen.ahk +++ b/ahk/Fullscreen.ahk @@ -1,7 +1,7 @@ #Requires AutoHotkey v2.0 ; ============================================================================ -; Fullscreen.ahk - Borderless fullscreen toggle with multi-monitor support +; Fullscreen.ahk - Borderless fullscreen toggle ; Version: 2.0.0 (Migrated to AHK v2 and consolidated from 3 variants) ; ; Consolidates: @@ -10,7 +10,7 @@ ; - Fullscreen_double.ahk (separate enter/exit hotkeys) ; ; Hotkeys: -; End - Toggle borderless fullscreen (multi-monitor aware) +; End - Toggle borderless fullscreen ; Ctrl+Alt+K - Enter borderless fullscreen ; Ctrl+Alt+L - Exit and restore window ; Ctrl+Alt+End - Toggle with always-on-top @@ -23,10 +23,10 @@ InitScript(true, true, true) ; UIA + Admin + Performance optimizations Persistent ; ============================================================================ -; Primary hotkey - End key toggles fullscreen with multi-monitor support +; Primary hotkey - End key toggles fullscreen ; ============================================================================ End:: { - ToggleFakeFullscreenMultiMonitor("A") + ToggleFakeFullscreen("A") } ; ============================================================================