- Python 3
- sudo privileges
git clone https://github.com/your-username/kikis-cloak.gitcd src/kikis-cloakpip install -r requirements.txtsudo python main.pyCreate a file called cloak with the following content:
#!/bin/bash
cd /full/path/to/src/kikis-cloak && sudo python main.pyReplace
/full/path/to/with the actual path on your system.
chmod +x cloaksudo mv cloak /usr/local/bin/cloakecho $PATHIf you'd prefer to install for your user only (no sudo), place the script in ~/.local/bin/ instead and make sure it's in your PATH by adding this to ~/.bashrc:
export PATH="$HOME/.local/bin:$PATH"Then reload:
source ~/.bashrc