2023-08-10 03:23:05 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
if ! test -x "$(command -v clipster)"; then
|
|
|
|
if ! test -d "${HOME}/.local/bin"; then
|
|
|
|
mkdir "${HOME}/.local/bin"
|
|
|
|
fi
|
|
|
|
|
|
|
|
wget -q -O "${HOME}/.local/bin/clipster" https://raw.githubusercontent.com/mrichar1/clipster/master/clipster
|
|
|
|
chmod +x "${HOME}/.local/bin/clipster"
|
|
|
|
fi
|
|
|
|
|
2023-08-10 05:44:40 -05:00
|
|
|
clipster -n 0 -o -n 0 -c | rofi -dmenu -format i -i -sep nul -p "Clipster"
|