├── .gitignore ├── Makefile ├── README.md ├── main.go └── pkg ├── pkgroot └── Library │ └── LaunchAgents │ └── com.github.groob.yo-yo.plist └── scripts └── postinstall /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkg 2 | yo-yo 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groob/yo-yo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groob/yo-yo/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groob/yo-yo/HEAD/main.go -------------------------------------------------------------------------------- /pkg/pkgroot/Library/LaunchAgents/com.github.groob.yo-yo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groob/yo-yo/HEAD/pkg/pkgroot/Library/LaunchAgents/com.github.groob.yo-yo.plist -------------------------------------------------------------------------------- /pkg/scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groob/yo-yo/HEAD/pkg/scripts/postinstall --------------------------------------------------------------------------------