10 lines
219 B
Makefile
10 lines
219 B
Makefile
INSTALL_DIR=/usr/local/bin
|
|
|
|
install:
|
|
pip3 install -Ur requirements.txt
|
|
cp alacritty_config.py ${INSTALL_DIR}/alacritty-config
|
|
chmod u+x ${INSTALL_DIR}/alacritty-config
|
|
|
|
uninstall:
|
|
rm ${INSTALL_DIR}/alacritty-config
|