windvn/mods/ksuperkey/data/chroot

13 lines
273 B
Plaintext
Raw Normal View History

2022-08-22 09:12:21 +00:00
#!/bin/bash
set -e
if [[ -f "/usr/local/bin/ksuperkey" ]]; then
exit
fi
apt-get -y install git pkg-config build-essential libx11-dev libxtst-dev
2022-08-22 09:12:21 +00:00
git clone https://github.com/hanschen/ksuperkey
cd ksuperkey
make
2022-08-23 11:05:56 +00:00
mv ksuperkey /usr/local/bin/ksuperkey
cd ..
rm -rf ksuperkey