Skip to content

Instantly share code, notes, and snippets.

@alanhe421
alanhe421 / wifi-changed.js
Created February 6, 2021 03:55
surge wifi changed ,auto change proxy
/**
* @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');