wezterm: Cross-platform Terminal-Konfiguration hinzugefuegt

- wezterm.lua: Catppuccin Macchiato, MesloLGS NF, 120x35, plattformspezifische Fontgroesse
- setup-base.sh: WezTerm via offiziellem apt-Repository installieren
- setup-desktop.sh: ~/.wezterm.lua beim Desktop-Setup aus Repo laden
This commit is contained in:
rene 2026-03-30 19:12:15 +02:00
parent b4a0f27b7b
commit 5f5111fd70
3 changed files with 64 additions and 0 deletions

View file

@ -175,6 +175,16 @@ if ! command -v fastfetch &>/dev/null; then
rm -f /tmp/fastfetch.deb
fi
# WezTerm (offizielles apt-Repository)
if ! command -v wezterm &>/dev/null; then
curl -fsSL https://apt.fury.io/wez/gpg.key \
| gpg --yes --dearmor -o /usr/share/keyrings/wezterm-fury.gpg
echo 'deb [signed-by=/usr/share/keyrings/wezterm-fury.gpg] https://apt.fury.io/wez/ * *' \
> /etc/apt/sources.list.d/wezterm.list
apt update -qq
apt install -y wezterm && ok "WezTerm installiert" || warn "WezTerm uebersprungen"
fi
# FreeCAD + LibreOffice + Bitwarden via Snap
snap install freecad 2>/dev/null || warn "FreeCAD Snap uebersprungen"
snap install libreoffice 2>/dev/null || warn "LibreOffice Snap uebersprungen"