├── .gitignore ├── Makefile ├── README.md ├── xmousepasteblock.c └── xmousepasteblock.service /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.swp 3 | xmousepasteblock 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaq/XMousePasteBlock/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaq/XMousePasteBlock/HEAD/README.md -------------------------------------------------------------------------------- /xmousepasteblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaq/XMousePasteBlock/HEAD/xmousepasteblock.c -------------------------------------------------------------------------------- /xmousepasteblock.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milaq/XMousePasteBlock/HEAD/xmousepasteblock.service --------------------------------------------------------------------------------