mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
11 lines
250 B
Bash
11 lines
250 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
curl -fLo greenclip https://github.com/erebe/greenclip/releases/download/3.4/greenclip
|
||
|
chmod 755 greenclip
|
||
|
if command -v doas >/dev/null
|
||
|
then
|
||
|
doas -- mv -fv greenclip /usr/bin/greenclip
|
||
|
else
|
||
|
sudo mv -fv greenclip /usr/bin/greenclip
|
||
|
fi
|