Skip to content

Instantly share code, notes, and snippets.

@keyboard-slayer
Last active November 4, 2023 13:38
Show Gist options
  • Save keyboard-slayer/f2d313f3a41aa1027064ad30d6ce6ee2 to your computer and use it in GitHub Desktop.
Save keyboard-slayer/f2d313f3a41aa1027064ad30d6ce6ee2 to your computer and use it in GitHub Desktop.
Quick cutekit install
#!/bin/bash
set -e
git clone https://github.com/cute-engineering/cutekit.git /tmp/ck
python3 -m venv ~/.config/cutekit
source ~/.config/cutekit/bin/activate
pip3 install /tmp/ck/
if [ ! -d ~/.local/bin ]; then
mkdir -p ~/.local/bin
fi
ln -s ~/.config/cutekit/bin/cutekit ~/.local/bin/cutekit
ln -s ~/.config/cutekit/bin/ck ~/.local/bin/ck
rm -rf /tmp/ck
echo -e "Cutekit is installed !\nThe only thing you have to do is add ~/.local/bin to your PATH variable"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment