├── .gitignore ├── LICENSE ├── README.md ├── doc └── neoclip.txt ├── lua └── neoclip │ ├── health.lua │ └── init.lua ├── plugin └── neoclip.lua └── src ├── CMakeLists.txt ├── extra ├── ext-data-control-v1.xml └── wlr-data-control-unstable-v1.xml ├── meson.build ├── neo_common.c ├── neo_wayland.c ├── neo_wayland.h ├── neo_x11.c ├── neo_x11.h ├── neoclip.h ├── neoclip_mac.m ├── neoclip_nix.c ├── neoclip_nix.h └── neoclip_w32.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.dll 3 | *.so 4 | build/ 5 | tags 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/README.md -------------------------------------------------------------------------------- /doc/neoclip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/doc/neoclip.txt -------------------------------------------------------------------------------- /lua/neoclip/health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/lua/neoclip/health.lua -------------------------------------------------------------------------------- /lua/neoclip/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/lua/neoclip/init.lua -------------------------------------------------------------------------------- /plugin/neoclip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/plugin/neoclip.lua -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/extra/ext-data-control-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/extra/ext-data-control-v1.xml -------------------------------------------------------------------------------- /src/extra/wlr-data-control-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/extra/wlr-data-control-unstable-v1.xml -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/neo_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neo_common.c -------------------------------------------------------------------------------- /src/neo_wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neo_wayland.c -------------------------------------------------------------------------------- /src/neo_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neo_wayland.h -------------------------------------------------------------------------------- /src/neo_x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neo_x11.c -------------------------------------------------------------------------------- /src/neo_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neo_x11.h -------------------------------------------------------------------------------- /src/neoclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neoclip.h -------------------------------------------------------------------------------- /src/neoclip_mac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neoclip_mac.m -------------------------------------------------------------------------------- /src/neoclip_nix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neoclip_nix.c -------------------------------------------------------------------------------- /src/neoclip_nix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neoclip_nix.h -------------------------------------------------------------------------------- /src/neoclip_w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matveyt/neoclip/HEAD/src/neoclip_w32.c --------------------------------------------------------------------------------