├── .github └── workflows │ ├── build-lint-test.yml │ ├── golangci-lint.yml │ └── tagged-release.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── client.go ├── clipnotify.go ├── copy.go ├── crypt.go ├── extras └── systemd │ └── clipsync.service ├── go.mod ├── go.sum ├── main.go ├── mqtt.go ├── paste.go ├── resources └── clipsync.png ├── rlog.go ├── util.go └── xselection.go /.github/workflows/build-lint-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/.github/workflows/build-lint-test.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/tagged-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/.github/workflows/tagged-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/client.go -------------------------------------------------------------------------------- /clipnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/clipnotify.go -------------------------------------------------------------------------------- /copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/copy.go -------------------------------------------------------------------------------- /crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/crypt.go -------------------------------------------------------------------------------- /extras/systemd/clipsync.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/extras/systemd/clipsync.service -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/main.go -------------------------------------------------------------------------------- /mqtt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/mqtt.go -------------------------------------------------------------------------------- /paste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/paste.go -------------------------------------------------------------------------------- /resources/clipsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/resources/clipsync.png -------------------------------------------------------------------------------- /rlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/rlog.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/util.go -------------------------------------------------------------------------------- /xselection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopaganini/clipsync/HEAD/xselection.go --------------------------------------------------------------------------------