windvn/mods/ksuperkey/data/chroot

12 lines
268 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
2022-08-22 09:12:21 +00:00
apt -y install git pkg-config build-essential libx11-dev libxtst-dev
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