Windows scripts

This commit is contained in:
2023-11-10 13:01:09 +01:00
parent 8773ae26e2
commit ca74402253
9 changed files with 133 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#Requires AutoHotkey v2.0
ScreenWidth := SysGet(78)
IsCompactDevice := (ScreenWidth < 640)
Run(A_ScriptDir . "\ArgSetTabletMode.ahk " . IsCompactDevice)
Run(A_ScriptDir . "\ArgMoveTaskbar.ahk " . (IsCompactDevice ? "Left" : "Bottom"))