this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

hammerspoon! app switching

+21
+1
Brewfile
··· 62 62 brew "curl" 63 63 brew "wget" 64 64 brew "httpie" 65 + cask "hammerspoon" 65 66 brew "goat" 66 67 brew "aichat" 67 68 brew "nmap"
+20
hammerspoon/init.lua
··· 1 + local appBindings = { 2 + ["1"] = "Ghostty", 3 + ["2"] = "Firefox", 4 + ["3"] = "Obsidian", 5 + ["4"] = "Todoist", 6 + ["5"] = "Slack", 7 + ["6"] = "Spotify", 8 + } 9 + 10 + for key, app in pairs(appBindings) do 11 + hs.hotkey.bind({ "cmd", "ctrl" }, key, function() 12 + hs.application.launchOrFocus(app) 13 + end) 14 + end 15 + 16 + hs.hotkey.bind({ "cmd", "ctrl" }, "r", function() 17 + hs.reload() 18 + end) 19 + 20 + hs.alert.show("Config loaded")