windvn/mods/ksuperkey/data/chroot
2022-09-21 10:39:34 +02:00

12 lines
268 B
Bash
Executable File

#!/bin/bash
set +e
if [[ -f "/usr/local/bin/ksuperkey" ]]; then
exit
fi
apt -y install git pkg-config build-essential libx11-dev libxtst-dev
git clone https://github.com/hanschen/ksuperkey
cd ksuperkey
make
mv ksuperkey /usr/local/bin/ksuperkey
cd ..
rm -rf ksuperkey