Dotfiles/setup/modules/optional-Modules/apps/onlyoffice.sh

8 lines
227 B
Bash

#!/bin/bash
set -euo pipefail
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
log "Installing OnlyOffice (AUR)..."
yay -S --answerdiff None --answerclean All --noconfirm onlyoffice-bin
log "OnlyOffice installed."