Installation
How to install wf-cli
From crates.io
cargo install wf-cliPrerequisites
- Rust — install from rustup.rs
- LLVM/Clang — required for RocksDB native bindings (yes, this clipboard tool has a database)
macOS
brew install llvm
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
# Add these to ~/.zshrc for persistenceLinux (Ubuntu/Debian)
sudo apt-get install clang llvm-dev libclang-devLinux (Fedora/RHEL)
sudo dnf install clang llvm-devel clang-develBuild from Source
git clone https://github.com/sagoez/workflow.git
cd workflow
cargo install --path .