Files
ArteKaffee/ArteKaffee.ahk
T
2026-07-27 11:17:59 +02:00

109 lines
2.3 KiB
AutoHotkey

#Requires AutoHotkey v2.0
#SingleInstance Force
Persistent
global IdleTime := 240 ; seconds
global Enabled := true
global LastX := 0
global LastY := 0
global LastMoveTime := A_TickCount
MouseGetPos &LastX, &LastY
;=========================================================
; Tray menu
;=========================================================
A_TrayMenu.Delete()
A_TrayMenu.Add("Enabled", ToggleEnabled)
A_TrayMenu.Add("Set idle time...", SetIdleTime)
A_TrayMenu.Add()
; Copypasta submenu
CopyMenu := Menu()
CopyMenu.Add("Standardpasswort", SetClipboard.Bind("BitteÄndern!"))
CopyMenu.Add("Password Ticket", SetClipboard.Bind("Auf Standardpasswort zurückgesetzt."))
CopyMenu.Add("Berechtigt", SetClipboard.Bind("Berechtigung erteilt."))
CopyMenu.Add("Erledigt", SetClipboard.Bind("Erledigt."))
A_TrayMenu.Add("Noodle", CopyMenu)
A_TrayMenu.Add()
A_TrayMenu.Add("Exit", (*) => ExitApp())
UpdateTray()
SetTimer(CheckMouse, 20000)
;=========================================================
; Mouse mover
;=========================================================
CheckMouse() {
global Enabled, IdleTime, LastX, LastY, LastMoveTime
if !Enabled
return
MouseGetPos &x, &y
if (x != LastX || y != LastY) {
LastX := x
LastY := y
LastMoveTime := A_TickCount
return
}
if (A_TickCount - LastMoveTime >= IdleTime * 1000) {
MouseMove x + 1, y, 0
MouseMove x, y, 0
LastMoveTime := A_TickCount
}
}
;=========================================================
; Tray functions
;=========================================================
ToggleEnabled(*) {
global Enabled
Enabled := !Enabled
UpdateTray()
}
SetIdleTime(*) {
global IdleTime
result := InputBox("Enter idle time in seconds:", "Mouse mover settings", "w200 h90", IdleTime)
if result.Result = "OK" && IsNumber(result.Value) {
IdleTime := Integer(result.Value)
}
}
UpdateTray() {
global Enabled
if Enabled {
A_TrayMenu.Check("Enabled")
A_IconTip := "Mouse Mover - Active"
} else {
A_TrayMenu.Uncheck("Enabled")
A_IconTip := "Mouse Mover - Disabled"
}
}
;=========================================================
; Clipboard
;=========================================================
SetClipboard(txt, *) {
A_Clipboard := txt
}