├── LICENSE ├── README.org └── ipc ├── commands.go ├── go.mod ├── helpers.go ├── inputs.go ├── outputs.go ├── seats.go ├── socket.go ├── tree.go ├── windows.go └── workspaces.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/README.org -------------------------------------------------------------------------------- /ipc/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/commands.go -------------------------------------------------------------------------------- /ipc/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Difrex/gosway/ipc 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /ipc/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/helpers.go -------------------------------------------------------------------------------- /ipc/inputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/inputs.go -------------------------------------------------------------------------------- /ipc/outputs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/outputs.go -------------------------------------------------------------------------------- /ipc/seats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/seats.go -------------------------------------------------------------------------------- /ipc/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/socket.go -------------------------------------------------------------------------------- /ipc/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/tree.go -------------------------------------------------------------------------------- /ipc/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/windows.go -------------------------------------------------------------------------------- /ipc/workspaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Difrex/gosway/HEAD/ipc/workspaces.go --------------------------------------------------------------------------------