11 lines
303 B
Bash
11 lines
303 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
source "$(dirname "${BASH_SOURCE[0]}")/../../lib/logging.sh"
|
|
|
|
log "Installing Remmina RDP client with FreeRDP and VNC support..."
|
|
sudo pacman -S --noconfirm --needed \
|
|
remmina \
|
|
freerdp \
|
|
libvncserver
|
|
log "Remmina installed with RDP (freerdp) and VNC support."
|