diff --git a/dot_config/hypr/programs.conf.tmpl b/dot_config/hypr/programs.conf.tmpl index 763b3a4..cd8ea3e 100644 --- a/dot_config/hypr/programs.conf.tmpl +++ b/dot_config/hypr/programs.conf.tmpl @@ -39,4 +39,5 @@ exec-once = wl-paste --type image --watch cliphist store # Stores only image dat # machine-specific configuration {{- if eq .chezmoi.hostname "sri-laptop-fedora" }} exec-once = [workspace 5 silent] flatpak run com.github.IsmaelMartinez.teams_for_linux +exec-once = [workspace 6 silent] outlook-for-linux {{- end }} diff --git a/executable_install-fedora.sh b/executable_install-fedora.sh index cad5189..5af3257 100755 --- a/executable_install-fedora.sh +++ b/executable_install-fedora.sh @@ -120,4 +120,18 @@ else echo "dotool ist bereits installiert, überspringe Download" fi +# Paketname wie im RPM: meist outlook-for-linux +PACKAGE="outlook-for-linux" + +# Prüfen, ob das Paket installiert ist +if rpm -q $PACKAGE >/dev/null 2>&1; then + echo "$PACKAGE ist bereits installiert." +else + echo "$PACKAGE ist nicht installiert. Starte Download und Installation..." + cd /tmp + wget https://github.com/mahmoudbahaa/outlook-for-linux/releases/download/v1.3.14-outlook/outlook-for-linux-1.3.14.x86_64.rpm + sudo rpm -ivh outlook-for-linux-1.3.14.x86_64.rpm + cd +fi + echo "Installationscript abgeschlossen!!!"