From b6ddbe4e6e295656e7e98e48c04e6bbe81318ef6 Mon Sep 17 00:00:00 2001 From: JieXu Date: Tue, 4 Nov 2025 15:29:27 +0800 Subject: [PATCH] Update proxy_set_linux_sh --- v2rayN/ServiceLib/Sample/proxy_set_linux_sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/v2rayN/ServiceLib/Sample/proxy_set_linux_sh b/v2rayN/ServiceLib/Sample/proxy_set_linux_sh index 112bb39f..82c9e22f 100644 --- a/v2rayN/ServiceLib/Sample/proxy_set_linux_sh +++ b/v2rayN/ServiceLib/Sample/proxy_set_linux_sh @@ -50,10 +50,10 @@ set_kde_proxy() { if [ "$MODE" == "manual" ]; then # Set proxy for all protocols $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key ProxyType 1 - $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key httpProxy "http://$PROXY_IP:$PROXY_PORT" - $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key httpsProxy "http://$PROXY_IP:$PROXY_PORT" - $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key ftpProxy "http://$PROXY_IP:$PROXY_PORT" - $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key socksProxy "http://$PROXY_IP:$PROXY_PORT" + $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key httpProxy "http://$PROXY_IP $PROXY_PORT" + $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key httpsProxy "http://$PROXY_IP $PROXY_PORT" + $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key ftpProxy "http://$PROXY_IP $PROXY_PORT" + $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key socksProxy "http://$PROXY_IP $PROXY_PORT" # Set ignored hosts $KWRITECONFIG --file kioslaverc --group "Proxy Settings" --key NoProxyFor "$IGNORE_HOSTS"