windvn/mods/ksuperkey/data/chroot
2023-04-09 10:05:18 +02:00

13 lines
273 B
Bash
Executable File

#!/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
git clone https://github.com/hanschen/ksuperkey
cd ksuperkey
make
mv ksuperkey /usr/local/bin/ksuperkey
cd ..
rm -rf ksuperkey