This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @description | |
* 如果是家里WI-FI则开启直连模式 | |
* 如果不是家里WI-FI则开启代理模式 | |
*/ | |
const WIFI_DONT_NEED_PROXYS = ['xiaomi_Alan_5G']; | |
if (WIFI_DONT_NEED_PROXYS.includes($network.wifi.ssid)) { | |
$surge.setOutboundMode('direct'); | |
$notification.post('Surge', 'Wi-Fi changed', 'use direct mode'); |