Skip to content

Commit

Permalink
Add new tray menu
Browse files Browse the repository at this point in the history
  • Loading branch information
overflowy committed Jul 19, 2023
1 parent 395092f commit db06531
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions ChatKey.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -228,3 +228,30 @@ IniRead, popupMenuHotkey, config.ini, settings, popup_menu_hotkey, !.
Hotkey, % popupMenuHotkey, ShowMenu

TrayTip,, Ready to use, 3, 1

Menu, Tray, NoStandard
Menu, Tray, Add, Edit Config, EditConfig
Menu, Tray, Add, Reload, Reload_
Menu, Tray, Add, About
Menu, Tray, Add, Update ChatKey, Update
Menu, Tray, Add, Exit
return

EditConfig:
Run, %A_ScriptDir%\config.ini
return

Reload_:
Reload
return

About:
Run, https://github.com/overflowy/chat-key
return

Update:
Run, https://github.com/overflowy/chat-key/releases/latest/download/ChatKey.zip
return

Exit:
ExitApp

0 comments on commit db06531

Please sign in to comment.