mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
be9599d1dd
And some clean up
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Version of greenclip: " | tr -d '\n' # 4.2
|
|
read -r version
|
|
|
|
curl -fLo greenclip https://github.com/erebe/greenclip/releases/download/${version}/greenclip
|
|
chmod 755 greenclip
|
|
mv -fv greenclip ~/.local/bin/greenclip
|