mirror of
https://gitlab.com/octospacc/Configs.git
synced 2025-01-02 09:36:52 +01:00
5 lines
238 B
AutoHotkey
Executable File
5 lines
238 B
AutoHotkey
Executable File
#Requires AutoHotkey v2.0
|
|
ScreenWidth := SysGet(78)
|
|
IsCompactDevice := (ScreenWidth < 640)
|
|
Run(A_ScriptDir . "\ArgSetTabletMode.ahk " . IsCompactDevice)
|
|
Run(A_ScriptDir . "\ArgMoveTaskbar.ahk " . (IsCompactDevice ? "Left" : "Bottom")) |