Skip to content

Commit c8c4b56

Browse files
CONTENT: update readme, add build script
1 parent cc4f535 commit c8c4b56

5 files changed

Lines changed: 42 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/bin

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Benjamin Kobjolke
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# iSwitch
22
Switch fast between open windows (Windows tool)
33

4+
## Installation
5+
6+
Download the latest release, and start the .exe
7+
8+
## Usage
9+
10+
Use caps-lock to show the window.
11+
12+
When the window is open, just type a few letters matching the desired window's title.
13+
14+
415

516
![plot](./media/demo.gif)
617

build_release.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"c:\Program Files\AutoHotkey\Compiler\Ahk2Exe.exe" /in iswitch.ahk
2+

iSwitch.ahk

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
;https://autohotkey.com/board/topic/30487-iswitchw-cosmetically-enhanced-edition/page-3
1+
;@Ahk2Exe-SetMainIcon icon.ico
2+
;@Ahk2Exe-ExeName %A_ScriptDir%\bin\iswitch.exe
3+
4+
;https://autohotkey.com/board/topic/30487-iswitchw-cosmetically-enhanced-edition/page-3
25
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
36
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
47
#SingleInstance force
@@ -149,7 +152,9 @@ if nomatchsound <>
149152
;
150153
;----------------------------------------------------------------------
151154

152-
Menu, tray, icon, icon.ico,0,1
155+
if (!a_iscompiled) {
156+
Menu, tray, icon, icon.ico,0,1
157+
}
153158

154159
AutoTrim, off
155160

0 commit comments

Comments
 (0)