diff --git a/dot_config/hypr/programs.conf.tmpl b/dot_config/hypr/programs.conf.tmpl index 033786d..25df8d0 100644 --- a/dot_config/hypr/programs.conf.tmpl +++ b/dot_config/hypr/programs.conf.tmpl @@ -28,13 +28,7 @@ exec-once = [workspace 3 silent] codium #exec-once = [workspace 4 silent] flatpak run com.spotify.Client exec-once = [workspace 4 silent] flatpak run io.github.dweymouth.supersonic exec-once = [workspace 5 silent] flatpak run im.riot.Riot - -# machine-specific configuration -{{- if eq .chezmoi.hostname "sri-laptop-fedora" }} -exec-once = [workspace 6 silent] outlook-for-linux -{{- else }} exec-once = [workspace 6 silent] thunderbird -{{- end }} # Bitwarden Window Floating exec-once = ~/.config/hypr/scripts/bitwarden.sh diff --git a/executable_install-fedora.sh b/executable_install-fedora.sh index e1973be..9d4d1c6 100644 --- a/executable_install-fedora.sh +++ b/executable_install-fedora.sh @@ -164,18 +164,4 @@ 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 --no-clobber https://github.com/mahmoudbahaa/outlook-for-linux/releases/download/v1.3.14-outlook/outlook-for-linux-1.3.14.$(uname -m).rpm - sudo rpm -ivh outlook-for-linux-1.3.14.$(uname -m).rpm - cd -fi - echo "Installationscript abgeschlossen!!!"