Initial commit of Hammerspoon config

This commit is contained in:
Franco Pellicciotti
2026-05-14 18:59:23 -04:00
commit 8a9f5c37ff
683 changed files with 180195 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
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