Files
hammerspoon/AppConfig.lua
T
2026-05-14 18:59:23 -04:00

27 lines
715 B
Lua

local AppConfig = {}
-- Master list of apps that require AppleScript/Force-moves
AppConfig.stubbornApps = {
["Gemini"] = true,
["AFFiNE"] = true,
["Terminal"] = true,
["System Settings"] = true,
["Hammerspoon"] = true
}
-- Master list of system components/utilities to ignore
AppConfig.ignoreList = {
["TheBoringNotch"] = true,
["theboringteam.boringnotch"] = true,
["Control Center"] = true,
["Notification Center"] = true,
["Dock"] = true,
["com.surteesstudios.Bartender"] = true,
["pro.betterdisplay.BetterDisplay"] = true,
["stats"] = true,
["eu.exelban.Stats"] = true,
["com.ethanbills.DockDoor"] = true,
["DockDoor"] = true
}
return AppConfig