update hyprland config and add outlook-for-linux

This commit is contained in:
Simon Rieger 2025-05-02 17:02:36 +02:00
parent 013137508c
commit d37d57c43d
2 changed files with 15 additions and 0 deletions

View file

@ -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 }}

View file

@ -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!!!"