Skip to content

Commit

Permalink
Version 1.0
Browse files Browse the repository at this point in the history
Added tray icon
Added a hardcoded keybinding
Added compiled bin
  • Loading branch information
Faustvii committed Jun 19, 2019
1 parent 8a50d71 commit 8317f66
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Binary file added bin/WindowManagement.exe
Binary file not shown.
Binary file added icons/flatscreen-tv.ico
Binary file not shown.
15 changes: 15 additions & 0 deletions source/WindowManagement.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#SingleInstance, Force
#KeyHistory, 0
SetBatchLines, -1
ListLines, Off
SendMode Input ; Forces Send and SendRaw to use SendInput buffering for speed
SetWorkingDir, %A_ScriptDir%
SplitPath, A_ScriptName, , , , thisscriptname
#MaxThreadsPerHotkey, 1 ; no re-entrant hotkey handling

TrayIcon = \..\icons\flatscreen-tv.ico
If (FileExist(TrayIcon)) {
Menu, Tray, Icon, %TrayIcon%
}

^`::Send #+{Left}

0 comments on commit 8317f66

Please sign in to comment.