From 7caa839a0072c2ce993c4ea529ee97a4cd3c6d50 Mon Sep 17 00:00:00 2001 From: mmikeww <1900684+mmikeww@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:24:11 -0400 Subject: [PATCH 1/2] Update komorebic.lib.ahk re-add the #Requires v2 line remove the "generated by komorebic" comment --- komorebic.lib.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/komorebic.lib.ahk b/komorebic.lib.ahk index e1e279b4a..29a5ff0c3 100644 --- a/komorebic.lib.ahk +++ b/komorebic.lib.ahk @@ -1,4 +1,4 @@ -; Generated by komorebic.exe +#Requires AutoHotkey v2.0.2 Start(ffm, await_configuration, tcp_port) { RunWait("komorebic.exe start " ffm " --await-configuration " await_configuration " --tcp-port " tcp_port, , "Hide") From b78693118b97ae51002011bfa8089cc4fbb6c318 Mon Sep 17 00:00:00 2001 From: mmikeww <1900684+mmikeww@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:29:31 -0400 Subject: [PATCH 2/2] Update autohotkey.md komorebi.generated.ahk is no longer in the repo, it was deleted in commit 52122c401d5186, so remove the instruction to download it --- docs/common-workflows/autohotkey.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/common-workflows/autohotkey.md b/docs/common-workflows/autohotkey.md index bf772064e..f7d00f3dd 100644 --- a/docs/common-workflows/autohotkey.md +++ b/docs/common-workflows/autohotkey.md @@ -21,9 +21,6 @@ hotkey bindings. # save the latest generated komorebic library to ~/komorebic.lib.ahk iwr https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.20/komorebic.lib.ahk -OutFile $Env:USERPROFILE\komorebic.lib.ahk -# save the latest generated app-specific config tweaks and fixes to ~/komorebi.generated.ahk -iwr https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.20/komorebi.generated.ahk -OutFile $Env:USERPROFILE\komorebi.generated.ahk - # save the sample komorebi configuration file to ~/komorebi.ahk iwr https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.20/komorebi.sample.ahk -OutFile $Env:USERPROFILE\komorebi.ahk ```