Skip to content

Commit d25c145

Browse files
committed
No longer ofline + TONS of QoL improvements.
This is still a beta though, final version is ready but not yet updated here. Signed-off-by: elModo7 <elmodo7yt@gmail.com>
1 parent 6d1ffe8 commit d25c145

186 files changed

Lines changed: 10260 additions & 1663 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12.ahk

Lines changed: 0 additions & 6 deletions
This file was deleted.

13.ahk

Lines changed: 0 additions & 6 deletions
This file was deleted.

14.ahk

Lines changed: 0 additions & 6 deletions
This file was deleted.

15.ahk

Lines changed: 0 additions & 2 deletions
This file was deleted.

2.ahk

Lines changed: 0 additions & 16 deletions
This file was deleted.

3.ahk

Lines changed: 0 additions & 6 deletions
This file was deleted.

App1.ahk

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Windows\System32
6+
7+
global Executable := "mspaint.exe"
8+
9+
IfWinExist, ahk_exe %Executable%
10+
{
11+
WinActivate, ahk_exe %Executable%
12+
}
13+
else
14+
{
15+
Run, "C:\Windows\System32\mspaint.exe"
16+
}

4.ahk renamed to App2.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SetBatchLines, -1
44
#NoTrayIcon
55
SetWorkingDir C:\Users\victo\Desktop
6-
Run, https://github.com/elmodo7
6+
Run, "mmsys.cpl"

App3.ahk

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
Run, "msinfo32"

App4.ahk

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#NoEnv
2+
#SingleInstance, Force
3+
SetBatchLines, -1
4+
#NoTrayIcon
5+
SetWorkingDir C:\Windows\System32
6+
7+
global Executable := "cmd.exe"
8+
9+
IfWinExist, ahk_exe %Executable%
10+
{
11+
WinActivate, ahk_exe %Executable%
12+
}
13+
else
14+
{
15+
Run, "C:\Windows\System32\cmd.exe"
16+
}

0 commit comments

Comments
 (0)