half-baked re-implementation of the major parts of sdorfehs in Hammerspoon
0
fork

Configure Feed

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

README: Add usage, screenshot

+32
+32
README.md
··· 4 4 [sdorfehs](https://github.com/jcs/sdorfehs) 5 5 in 6 6 [Hammerspoon](https://www.hammerspoon.org/). 7 + 8 + ## Usage 9 + 10 + Fetch spoonfish: 11 + 12 + cd ~/.hammerspoon 13 + git clone https://github.com/jcs/spoonfish.git 14 + 15 + Then add it to your ~/.hammerspoon/init.lua script, along with any startup 16 + configuration/commands: 17 + 18 + local spoonfish = require("spoonfish/init") 19 + spoonfish.start() 20 + 21 + spoonfish.apps_to_watch = { 22 + "^" .. spoonfish.terminal, 23 + "^Firefox", 24 + "^Music", 25 + "^Photos", 26 + "^Xcode", 27 + "^Android Studio", 28 + } 29 + table.insert(spoonfish.windows_to_ignore, "Extension: (Open in Browser)") 30 + 31 + local cs = hs.spaces.activeSpaceOnScreen() 32 + spoonfish.frame_vertical_split(cs, 1) 33 + spoonfish.frame_horizontal_split(cs, 2) 34 + spoonfish.frame_focus(cs, 1, true) 35 + 36 + ## Screenshot 37 + 38 + [![Screenshot](https://deskto.ps/u/jcs/d/ulofmj/image)](https://deskto.ps/u/jcs/d/ulofmj)