Skip to content

Instantly share code, notes, and snippets.

View ericslaw's full-sized avatar

Eric S. Law ericslaw

  • Pennsylvania
View GitHub Profile
@tmandry
tmandry / windowTracker.lua
Created December 21, 2014 08:30
Track all window open, close, move, and resize events using Hammerspoon
local events = hs.uielement.watcher
watchers = {}
function init()
appsWatcher = hs.application.watcher.new(handleGlobalAppEvent)
appsWatcher:start()
-- Watch any apps that already exist
local apps = hs.application.runningApplications()