11 lines
187 B
Bash
Executable file
11 lines
187 B
Bash
Executable file
#!/bin/env sh
|
|
|
|
PREV_DIRECTORY=$PWD
|
|
|
|
git clone https://github.com/kjlo/hyprdrop ~/.cache/hyprdrop
|
|
cd ~/.cache/hyprdrop
|
|
cargo install --path .
|
|
|
|
cd $PREV_DIRECTORY
|
|
|
|
rm -rf ~/.cache/hyprdrop
|