27 lines
715 B
Lua
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 |