diff --git a/bin/omarchy-install-service-sunshine b/bin/omarchy-install-service-sunshine index 9aef4f31..2fedf584 100755 --- a/bin/omarchy-install-service-sunshine +++ b/bin/omarchy-install-service-sunshine @@ -24,7 +24,7 @@ open_ufw_port_for_private_lans() { local cidr for cidr in "${PRIVATE_CIDRS[@]}"; do - sudo ufw allow in proto "$proto" from "$cidr" to any port "$port" comment "$UFW_COMMENT" + sudo ufw allow in proto "$proto" from "$cidr" to any port "$port" comment "$UFW_COMMENT" >/dev/null done } @@ -33,7 +33,7 @@ open_ufw_port_for_tailscale() { local port="$2" if ip link show tailscale0 >/dev/null 2>&1; then - sudo ufw allow in on tailscale0 to any port "$port" proto "$proto" comment "$UFW_COMMENT" + sudo ufw allow in on tailscale0 to any port "$port" proto "$proto" comment "$UFW_COMMENT" >/dev/null fi } diff --git a/bin/omarchy-remove-service-sunshine b/bin/omarchy-remove-service-sunshine index 83457978..e9976222 100755 --- a/bin/omarchy-remove-service-sunshine +++ b/bin/omarchy-remove-service-sunshine @@ -13,7 +13,7 @@ HYPR_AUTOSTART_FILE="$HOME/.config/hypr/autostart.lua" HYPR_AUTOSTART_ENTRY='o.launch_on_start("sunshine")' delete_ufw_rule() { - sudo ufw --force delete "$@" 2>/dev/null || true + sudo ufw --force delete "$@" >/dev/null 2>&1 || true } close_ufw_port_for_private_lans() {