aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-04-11 15:28:09 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-04-11 15:28:09 +0200
commitff581facd12c57c23434c6730cd2db4945daf1cc (patch)
treed6d91e848a937063dfd03d229ad343bcc3e17b1e
parent28aced1ea91c8aed214ae2116b48302846d1b4da (diff)
downloaddrm-john.tar.gz
Update drmjohn
-rw-r--r--drm.ahk20
1 files changed, 1 insertions, 19 deletions
diff --git a/drm.ahk b/drm.ahk
index 1298618..a0c9e04 100644
--- a/drm.ahk
+++ b/drm.ahk
@@ -50,6 +50,7 @@ for k, res in Resolutions
Menu, Tray, Add, %res%, ButtonResolution
Menu, Tray, Add
Menu, Tray, Add, &Configure..., ButtonConfigure
+Menu, Tray, Add, &Restart, ButtonRestart
Menu, Tray, Add, E&xit, ButtonExit
AddCheckmark()
OnMessage(0x404, "NotifyIcon")
@@ -64,25 +65,6 @@ return
#IncludeAgain %A_ScriptDir%\hotkeys.x
-; Handle tray opening
-
-NotifyIcon(wParam, lParam)
-{
- if (lParam = 0x205) ; WM_RBUTTONUP
- {
- Menu, Tray, UseErrorLevel
- Menu, Tray, Delete, &Restart
- Menu, Tray, Delete, E&xit
- Menu, Tray, UseErrorLevel, Off
- if (GetKeyState("Shift") = 1)
- Menu, Tray, Add, &Restart, ButtonRestart
- else
- Menu, Tray, Add, E&xit, ButtonExit
- Menu, Tray, Show
- return 1
- }
-}
-
; Open configuration
ButtonConfigure()