update hyprland config and add outlook-for-linux
This commit is contained in:
parent
013137508c
commit
d37d57c43d
2 changed files with 15 additions and 0 deletions
|
@ -39,4 +39,5 @@ exec-once = wl-paste --type image --watch cliphist store # Stores only image dat
|
||||||
# machine-specific configuration
|
# machine-specific configuration
|
||||||
{{- if eq .chezmoi.hostname "sri-laptop-fedora" }}
|
{{- if eq .chezmoi.hostname "sri-laptop-fedora" }}
|
||||||
exec-once = [workspace 5 silent] flatpak run com.github.IsmaelMartinez.teams_for_linux
|
exec-once = [workspace 5 silent] flatpak run com.github.IsmaelMartinez.teams_for_linux
|
||||||
|
exec-once = [workspace 6 silent] outlook-for-linux
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -120,4 +120,18 @@ else
|
||||||
echo "dotool ist bereits installiert, überspringe Download"
|
echo "dotool ist bereits installiert, überspringe Download"
|
||||||
fi
|
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!!!"
|
echo "Installationscript abgeschlossen!!!"
|
||||||
|
|
Loading…
Add table
Reference in a new issue