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