├── .gitignore ├── LICENSE ├── README.md ├── assets └── demo-01.gif ├── lib ├── sway-ipc.jq ├── sway-util └── util.jq ├── scripts └── gendocs.sh └── snag /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/assets/demo-01.gif -------------------------------------------------------------------------------- /lib/sway-ipc.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/lib/sway-ipc.jq -------------------------------------------------------------------------------- /lib/sway-util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/lib/sway-util -------------------------------------------------------------------------------- /lib/util.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/lib/util.jq -------------------------------------------------------------------------------- /scripts/gendocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/scripts/gendocs.sh -------------------------------------------------------------------------------- /snag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b0o/snag/HEAD/snag --------------------------------------------------------------------------------