diff --git a/install-scripts/00-hypr-pkgs.sh b/install-scripts/00-hypr-pkgs.sh index 4fc18d8..9e4b52c 100644 --- a/install-scripts/00-hypr-pkgs.sh +++ b/install-scripts/00-hypr-pkgs.sh @@ -112,6 +112,15 @@ for PKG1 in "${hypr_package[@]}" "${hypr_package_2[@]}" "${Extra[@]}"; do fi done + +# Install cliphist using go +printf "\n%s - Installing cliphist using go.... \n" "${NOTE}" +export PATH=$PATH:/usr/local/bin +go install go.senan.xyz/cliphist@latest 2>&1 | tee -a "$LOG" + +# copy cliphist into /usr/local/bin for some reason it is installing in ~/go/bin +sudo cp -r "$HOME/go/bin/cliphist" "/usr/local/bin/" 2>&1 | tee -a "$LOG" + ## making brightnessctl work sudo chmod +s $(which brightnessctl) 2>&1 | tee -a "$LOG" || true