├── .gitignore ├── Makefile ├── README.md ├── _bin └── xdotool.exe ├── _dev ├── SendPaste.cs └── SwitchAndPasteToMatlab.cs ├── _ref └── xdotool.man └── xdotool.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/README.md -------------------------------------------------------------------------------- /_bin/xdotool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/_bin/xdotool.exe -------------------------------------------------------------------------------- /_dev/SendPaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/_dev/SendPaste.cs -------------------------------------------------------------------------------- /_dev/SwitchAndPasteToMatlab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/_dev/SwitchAndPasteToMatlab.cs -------------------------------------------------------------------------------- /_ref/xdotool.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/_ref/xdotool.man -------------------------------------------------------------------------------- /xdotool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebranlard/xdotool-for-windows/HEAD/xdotool.cs --------------------------------------------------------------------------------