x11-input-mirror 0.3.5

Mirrors X11 (Xserver) input events from one PC to multiple over the network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
rm x11-input-mirror.zip
rm -rf tmp
mkdir tmp
mkdir tmp/x11-input-mirror
cargo +nightly build --release
cp target/release/grabber tmp/x11-input-mirror/
cp target/release/server tmp/x11-input-mirror/
cp GrabberConfig.toml tmp/x11-input-mirror/
cp SecurityConfig.toml tmp/x11-input-mirror/
cp ServerConfig.toml tmp/x11-input-mirror/
cp README.md tmp/x11-input-mirror/
cd tmp
7z a -tzip -mx1 x11-input-mirror.zip x11-input-mirror
cd ..
mv tmp/x11-input-mirror.zip .
rm -rf tmp