mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-04 12:00:16 +00:00
14 lines
312 B
Bash
Executable File
14 lines
312 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# in case setup.py does nothing instead of something.
|
|
# call via `./scripts/build.sh`
|
|
|
|
# try both ways of installation
|
|
sudo pip3 install .
|
|
sudo python3 setup.py install
|
|
|
|
# copy crucial files
|
|
sudo cp bin/* /usr/bin/ -r
|
|
sudo mkdir /usr/share/key-mapper
|
|
sudo cp data/* /usr/share/key-mapper -r
|