14 lines
373 B
Python
14 lines
373 B
Python
## Title : 打开代理设置
|
|
## License : MIT
|
|
## Author : WingSummer
|
|
## Function : 打开 Deepin 的代理设置
|
|
## Written on 2022/8/2
|
|
|
|
#coding=utf-8
|
|
|
|
def main():
|
|
service.dbusCall("com.deepin.dde.ControlCenter","/com/deepin/dde/ControlCenter","com.deepin.dde.ControlCenter","ShowPage",["network","System Proxy"])
|
|
|
|
## ============= entry ============= ##
|
|
|
|
main() |