From 667976a134759a45b276e2d6d2b15011d8f605cc Mon Sep 17 00:00:00 2001 From: Simon Rieger Date: Thu, 24 Apr 2025 11:24:19 +0200 Subject: [PATCH] add install dotool --- executable_install-fedora.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/executable_install-fedora.sh b/executable_install-fedora.sh index cb665be..d659c26 100755 --- a/executable_install-fedora.sh +++ b/executable_install-fedora.sh @@ -93,6 +93,7 @@ if [[ ! -f /usr/bin/cliphist ]]; then cd cliphist go build -o cliphist . sudo cp cliphist /usr/bin/ + cd echo "cliphist wurde auf dem System installiert" else echo "cliphist ist bereits installiert, überspringe Download" @@ -108,4 +109,17 @@ else echo "MinIO Client ist bereits installiert, überspringe Download" fi +# dotool mit Prüfung +if [[ ! -f /usr/bin/dotool ]]; then + mkdir -p ${HOME}/repos + cd ${HOME}/repos + git clone https://git.sr.ht/~geb/dotool + cd dotool + ./build.sh && sudo ./build.sh install + cd + echo "dotool wurde auf dem System installiert" +else + echo "dotool ist bereits installiert, überspringe Download" +fi + echo "Installationscript abgeschlossen!!!"