Skip to content

Instantly share code, notes, and snippets.

@alanhe421
Created February 6, 2021 03:55
Show Gist options
  • Save alanhe421/a35484467afabb8ac6ee2246d37363e5 to your computer and use it in GitHub Desktop.
Save alanhe421/a35484467afabb8ac6ee2246d37363e5 to your computer and use it in GitHub Desktop.
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');
} else {
$surge.setSelectGroupPolicy('Final-select', 'Group');
$surge.setOutboundMode('rule');
$notification.post('Surge', 'Wi-Fi changed', 'use rule-based proxy mode');
}
$done();
@qzi
Copy link

qzi commented Jul 11, 2023

语法变了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment