Exemple #1
0
 def get_conf_from_qr(self):
     """
     从二维码导入配置
     :return:
     """
     fname, ok = QFileDialog.getOpenFileName(self, '选择二维码图片', '/home', 'Image files(*.jpg *.png)')
     if ok:
         try:
             barcode = pyzbar.decode(Image.open(fname))
         except:
             shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 二维码解析错误:无法解析该二维码"
             subprocess.call([shell], shell=True)
         else:
             try:
                 self.v2rayL.addconf(barcode[0].data.decode("utf-8"))
             except MyException as e:
                 shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format("错误: " + e.args[0])
                 subprocess.call([shell], shell=True)
             except:
                 shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 二维码解析错误:无法解析该二维码"
                 subprocess.call([shell], shell=True)
             else:
                 shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 添加配置成功"
                 subprocess.call([shell], shell=True)
                 self.v2rayL = V2rayL()
                 self.display_all_conf()
Exemple #2
0
    def del_subs(self, row):
        choice = QMessageBox.question(self, "删除订阅", "删除订阅地址,对应的配置也将删除,是否继续?",
                                      QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
        if choice == QMessageBox.Yes:
            remark = self.subs_child_ui.tableWidget.item(row, 1).text()
            url = self.subs_child_ui.tableWidget.item(row, 2).text()
            for i in self.v2rayL.current_status.url:
                if i[0] == remark and i[1][:57] == url:
                    self.v2rayL.current_status.url.remove(i)
                    break

            with open("/etc/v2rayL/ncurrent", "wb") as f:
                pickle.dump(self.v2rayL.current_status, f)
            self.show_subs_dialog()
            if self.v2rayL.current_status.url:
                self.update_subs(False)
            else:
                # 如果连接对象为删除的订阅地址中的配置,断开连接
                if self.v2rayL.current_status.current in self.v2rayL.subs.saved_conf["subs"]:
                    self.disconn_start.v2rayL = self.v2rayL
                    self.disconn_start.tableView = self.first_ui.tableWidget
                    self.disconn_start.start()

                self.v2rayL.subs.saved_conf["subs"] = {}
                with open("/etc/v2rayL/ndata", "wb") as jf:
                    # print(self.v2rayL.subs.saved_conf)
                    pickle.dump(self.v2rayL.subs.saved_conf, jf)
                self.v2rayL = V2rayL()
                self.display_all_conf()
                self.config_setting_ui.lineEdit.setText(";".join([x[1] for x in self.v2rayL.current_status.url]))
Exemple #3
0
    def add_ss_by_input(self):
        """
        手动添加shadowsocks配置
        :return:
        """
        remark = self.ss_add_child_ui.lineEdit_2.text().strip()
        addr = self.ss_add_child_ui.lineEdit_3.text().strip()
        port = self.ss_add_child_ui.lineEdit_4.text().strip()
        password = self.ss_add_child_ui.lineEdit_5.text().strip()
        method = self.ss_add_child_ui.comboBox.currentText()
        # print(remark, addr, port, password, security)
        if not remark:
            remark = "shadowsocks_" + str(random.choice(range(10000, 99999)))

        b64str = "ss://"+base64.b64encode("{}:{}@{}:{}".format(method, password, addr, port).encode()).decode()\
                 + "#" + remark

        self.v2rayL.addconf(b64str)
        shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 添加成功"
        subprocess.call([shell], shell=True)
        self.v2rayL = V2rayL()
        self.display_all_conf()
        self.ss_add_child_ui.lineEdit_2.setText("")
        self.ss_add_child_ui.lineEdit_3.setText("")
        self.ss_add_child_ui.lineEdit_4.setText("")
        self.ss_add_child_ui.lineEdit_5.setText("")
        self.ss_add_ui.hide()
Exemple #4
0
 def get_conf_from_uri(self):
     """
     通过分享链接获取配置
     :return:
     """
     uris = self.config_setting_ui.lineEdit_2.text().split(";")
     if not uris:
         QMessageBox.warning(self, "提示",
                             self.tr("请输入配置分享路径!"),
                             QMessageBox.Ok, QMessageBox.Ok)
     else:
         uris = [x for x in uris if x]
         errors = []
         for i in range(len(uris)):
             try:
                 self.v2rayL.addconf(uris[i])
             except MyException:
                 # shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format("错误: "+e.args[0])
                 # subprocess.call([shell], shell=True)
                 # self.config_setting_ui.lineEdit_2.setText("")
                 errors.append(str(i+1))
             # else:
         if not errors:
             shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 添加配置成功"
         else:
             shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL " \
                     "添加配置成功,其中第{}条配置解析错误,无法添加".format("、".join(errors))
         subprocess.call([shell], shell=True)
         self.v2rayL = V2rayL()
         self.display_all_conf()
         self.config_setting_ui.lineEdit_2.setText("")
Exemple #5
0
    def add_vmess_by_input(self):
        """
        手动添加vmess配置
        :return:
        """
        remark = self.vmess_add_child_ui.lineEdit.text().strip()
        addr = self.vmess_add_child_ui.lineEdit_2.text().strip()
        port = self.vmess_add_child_ui.lineEdit_3.text().strip()
        uid = self.vmess_add_child_ui.lineEdit_4.text().strip()
        aid = self.vmess_add_child_ui.lineEdit_5.text().strip()
        net = self.vmess_add_child_ui.comboBox.currentText()
        types = self.vmess_add_child_ui.comboBox_2.currentText()
        host = self.vmess_add_child_ui.lineEdit_6.text().strip()
        path = self.vmess_add_child_ui.lineEdit_7.text().strip()
        tls = self.vmess_add_child_ui.comboBox_3.currentText()
        # print(remark, addr, port, password, security)
        if not remark:
            remark = "vmess_" + str(random.choice(range(10000, 99999)))
        conf = {
            'add': addr,
            'port': port,
            'host': host,
            'ps': remark,
            'id': uid,
            'aid': aid,
            'net': net,
            'type': types,
            'path': path,
            'tls': tls,
            "v": 2
        }
        b64str = "vmess://" + base64.b64encode(str(conf).encode()).decode()

        self.v2rayL.addconf(b64str)
        shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 添加成功"
        subprocess.call([shell], shell=True)
        self.v2rayL = V2rayL()
        self.display_all_conf()
        self.vmess_add_child_ui.lineEdit.setText("")
        self.vmess_add_child_ui.lineEdit_2.setText("")
        self.vmess_add_child_ui.lineEdit_3.setText("")
        self.vmess_add_child_ui.lineEdit_4.setText("")
        self.vmess_add_child_ui.lineEdit_5.setText("")
        self.vmess_add_child_ui.lineEdit_6.setText("")
        self.vmess_add_child_ui.lineEdit_7.setText("")
        self.vmess_add_ui.hide()
Exemple #6
0
    def __init__(self, parent=None):
        super(MyMainWindow, self).__init__(parent)

        self.init_ui()
        self.version = "2.1.2"

        # 获取api操作
        self.v2rayL = V2rayL()
        # 开启连接线程
        self.conn_start = ConnectThread()
        # 断开连接线程
        self.disconn_start = DisConnectThread()
        # 更新线程
        self.update_addr_start = UpdateSubsThread()
        self.update_subs_start = UpdateSubsThread()

        self.ping_start = PingThread()
        # 检查版本更新线程
        self.check_update_start = CheckUpdateThread(version=self.version)
        # 更新版本线程
        self.version_update_start = VersionUpdateThread()
        # CMD线程
        self.run_cmd_start = RunCmdThread()
        self.run_cmd_start.start()

        if self.v2rayL.current_status.auto:
            self.config_setting_ui.switchBtn = SwitchBtn(self.config_setting_ui.label_9, True)
            self.config_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)
        else:
            self.config_setting_ui.switchBtn = SwitchBtn(self.config_setting_ui.label_9, False)
            self.config_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)

        # 自动更新订阅
        if self.v2rayL.current_status.auto and self.v2rayL.current_status.url:
            try:
                self.update_subs_start.v2rayL = self.v2rayL
                self.update_subs_start.subs_child_ui = None
                self.update_subs_start.start()
            except:
                # with open("/etc/v2rayL/ncurrent", "wb") as jf:
                #     self.v2rayL.current_status.url = set()
                #     self.v2rayL.current_status.auto = False
                #     pickle.dump(self.v2rayL.current_status, jf)
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format("更新失败")
                subprocess.call([shell], shell=True)

        # 自动检查更新
        if self.v2rayL.current_status.check:
            self.system_setting_ui.switchBtn = SwitchBtn(self.system_setting_ui.label_8, True)
            self.system_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)
            self.check_update_start.start()
        else:
            self.system_setting_ui.switchBtn = SwitchBtn(self.system_setting_ui.label_8, False)
            self.system_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)

        # 是否启用日志
        if self.v2rayL.current_status.log:
            self.a3.setChecked(True)
            self.a4.setChecked(False)
        else:
            self.a4.setChecked(True)
            self.a3.setChecked(False)

        # 填充当前订阅地址
       #  print(self.v2rayL.current_status.url)
        self.config_setting_ui.lineEdit.setText(";".join([x[1] for x in self.v2rayL.current_status.url]))
        # 端口
        self.system_setting_ui.http_sp.setValue(self.v2rayL.current_status.http)
        self.system_setting_ui.socks_sp.setValue(self.v2rayL.current_status.socks)
        # # 显示当前所有配置
        self.display_all_conf()

        qInfo("{}@$ff$@app start.".format(self.v2rayL.current_status.log))

        # self.ping_start = PingThread(tv=(self.tableView, self.v2rayL))
        # 事件绑定
        self.config_setting_ui.switchBtn.checkedChanged.connect(self.change_auto_update)
        self.system_setting_ui.switchBtn.checkedChanged.connect(self.change_check_update)
        # self.system_setting_ui.switchBtn1.checkedChanged.connect(self.auto_on)
        self.first_ui.pushButton.clicked.connect(lambda: self.update_subs(True))  # 更新订阅
        self.subs_add_child_ui.pushButton.clicked.connect(self.change_subs_addr)
        # self.subs_add_child_ui.textEdit.returnPressed.connect(self.change_subs_addr)
        self.config_setting_ui.pushButton_2.clicked.connect(self.output_conf)  # 导出配置文件
        self.config_setting_ui.pushButton.clicked.connect(self.get_conf_from_qr)  # 通过二维码导入
        self.first_ui.pushButton_1.clicked.connect(self.start_ping_th)  # 测试延时
        self.system_setting_ui.checkupdateButton.clicked.connect(self.check_update)  # 检查更新
       # self.config_setting_ui.lineEdit.returnPressed.connect(self.change_subs_addr)  # 更新订阅操作
        self.config_setting_ui.pushButton_3.clicked.connect(self.show_subs_dialog)  # 显示具体订阅操作
        self.config_setting_ui.lineEdit_2.returnPressed.connect(self.get_conf_from_uri)  # 解析URI获取配置
        self.conn_start.sinOut.connect(self.alert)  # 得到连接反馈
        self.disconn_start.sinOut.connect(self.alert)  # 得到断开连接反馈
        self.update_addr_start.sinOut.connect(self.alert)  # 得到反馈
        self.update_subs_start.sinOut.connect(self.alert)   # 得到反馈
        self.ping_start.sinOut.connect(self.alert)  # 得到反馈
        self.check_update_start.sinOut.connect(self.alert)
        self.version_update_start.sinOut.connect(self.alert)
        self.system_setting_ui.http_sp.valueChanged.connect(lambda: self.value_change(True))
        self.system_setting_ui.socks_sp.valueChanged.connect(lambda: self.value_change(False))
        self.config_setting_ui.pushButton_ss.clicked.connect(self.show_add_ss_dialog)
        self.config_setting_ui.pushButton_vmess.clicked.connect(self.show_add_vmess_dialog)
        self.ss_add_child_ui.pushButton.clicked.connect(self.add_ss_by_input)
        self.vmess_add_child_ui.pushButton.clicked.connect(self.add_vmess_by_input)
        self.subs_child_ui.pushButton.clicked.connect(self.show_add_subs_dialog)
        self.a1.triggered.connect(self.show)
        self.a3.triggered.connect(self.enable_log)
        self.a4.triggered.connect(self.disable_log)

         # print("hahh")
        # 设置最小化到托盘
        SystemTray(self, app)
Exemple #7
0
    def alert(self, tp):
        """
        操作反馈
        """
        tp, rs, ret, row = tp
        if rs == "@@OK@@":
            if tp == "conn":
                # QMessageBox.information(self, "连接成功", self.tr("连接成功!当前状态: " + ret))
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '连接成功!当前状态: " + ret + "'"
                subprocess.call([shell], shell=True)
                qInfo("{}@$ff$@Successfully connected to: {}".format(self.v2rayL.current_status.log, ret).encode())
                self.display_all_conf()

            elif tp == "disconn":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL VPN连接已断开"
                subprocess.call([shell], shell=True)
                qInfo("{}@$ff$@VPN connection disconnected.".format(self.v2rayL.current_status.log))
                self.display_all_conf()

            elif tp == "addr":
                # shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 更新订阅地址成功"
                # subprocess.call([shell], shell=True)
                qInfo("{}@$ff$@Add a new subscription address: {}".format(self.v2rayL.current_status.log, ret))
                self.v2rayL = V2rayL()
                self.display_all_conf()
                self.show_subs_dialog()
                self.subs_add_child_ui.lineEdit.setText("")
                self.subs_add_child_ui.textEdit.setPlainText("")
                self.add_subs_ui.hide()
                self.config_setting_ui.lineEdit.setText(";".join([x[1] for x in self.v2rayL.current_status.url]))

            elif tp == "update":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 订阅更新完成"
                subprocess.call([shell], shell=True)
                if not ret[1]:
                    qInfo("{}@$ff$@Successfully updated subscription.".format(self.v2rayL.current_status.log))
                else:
                    retinfo = ""
                    for i in ret[1]:
                        retinfo += "\n{}-{}-{}".format(i[0][0], i[0][1], i[1])
                    qInfo("{}@$ff$@{}".format(self.v2rayL.current_status.log, retinfo).encode())
                    # print(retinfo)
                self.v2rayL = V2rayL()
                # print(123)
                self.display_all_conf()
                self.config_setting_ui.lineEdit.setText(";".join([x[1] for x in self.v2rayL.current_status.url]))

            elif tp == "ping":
                if isinstance(ret, int):
                    self.first_ui.time.setText(str(ret)+"ms")
                else:
                    self.first_ui.time.setText(ret)

            elif tp == "ckud":
                if not row:
                    shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                    subprocess.call([shell], shell=True)
                else:
                    choice = QMessageBox.question(self, "检查更新", "最新版本: v{}"
                                                  "\n更新内容:\n{}\n是否更新?".format(
                        row.json()['tag_name'],
                        row.json()['body']),
                                                  QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes)
                    if choice == QMessageBox.Yes:
                        shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                        subprocess.call([shell], shell=True)
                        self.version_update_start.url = "http://dl.thinker.ink/update.sh"
                        qInfo("{}@$ff$@Ready to update, the latest version number is: v{}.".format(
                            self.v2rayL.current_status.log, row.json()['tag_name']))
                        self.version_update_start.start()

            elif tp == "vrud":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format(ret)
                subprocess.call([shell], shell=True)
                qInfo("{}@$ff$@Successfully updated to the latest version.".format(self.v2rayL.current_status.log))

        else:
            if tp == "addr":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format(ret)
                subprocess.call([shell], shell=True)
                if ret == "无法获取订阅信息,订阅站点访问失败":
                    ret = "Failed to access subscription site, unable to get subscription information"
                elif ret == "解析订阅信息失败,请确认链接正确":
                    ret = "Failed to resolve subscription information, please confirm the link is correct"
                else:
                    pass

                qInfo("{}@$ff$@Failed to get subscriptions: {}.".format(self.v2rayL.current_status.log, ret))

            elif tp == "conn":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)
                self.display_all_conf()

            elif tp == "disconn":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)
                self.display_all_conf()

            elif tp == "ckud":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)

            elif tp == "vrud":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)

            elif tp == "ping":
                self.first_ui.time.setText(str(ret))
Exemple #8
0
    def __init__(self, parent=None):
        super(MyMainWindow, self).__init__(parent)
        self.init_ui()

        self.version = "2.0.3"

        # 获取api操作
        self.v2rayL = V2rayL()
        # 开启连接线程
        self.conn_start = ConnectThread()
        # 断开连接线程
        self.disconn_start = DisConnectThread()
        # 更新线程
        self.update_addr_start = UpdateSubsThread()
        self.update_subs_start = UpdateSubsThread()

        self.ping_start = PingThread()
        # 检查版本更新线程
        self.check_update_start = CheckUpdateThread(version=self.version)
        # 更新版本线程
        self.version_update_start = VersionUpdateThread()
        if self.v2rayL.auto:
            self.config_setting_ui.switchBtn = SwitchBtn(self.config_setting_ui.label_9, True)
            self.config_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)
        else:
            self.config_setting_ui.switchBtn = SwitchBtn(self.config_setting_ui.label_9, False)
            self.config_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)

        # 自动更新订阅
        if self.v2rayL.auto and self.v2rayL.url:
            try:
                self.update_subs_start.v2rayL = self.v2rayL
                self.update_subs_start.subs_child_ui = None
                self.update_subs_start.start()
            except:
                with open("/etc/v2rayL/ncurrent", "wb") as jf:
                    pickle.dump((self.v2rayL.current, None, False, self.v2rayL.check), jf)
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format("更新失败, 已关闭自动更新,请更新订阅地址")
                subprocess.call([shell], shell=True)

        # 自动检查更新
        if self.v2rayL.check:
            self.system_setting_ui.switchBtn = SwitchBtn(self.system_setting_ui.label_8, True)
            self.system_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)
            self.check_update_start.start()
        else:
            self.system_setting_ui.switchBtn = SwitchBtn(self.system_setting_ui.label_8, False)
            self.system_setting_ui.switchBtn.setGeometry(0, 0, 60, 30)

        # 填充当前订阅地址
        self.config_setting_ui.lineEdit.setText(self.v2rayL.url)
        #
        # # 显示当前所有配置
        self.display_all_conf()

        # self.ping_start = PingThread(tv=(self.tableView, self.v2rayL))
        # 事件绑定
        self.config_setting_ui.switchBtn.checkedChanged.connect(self.change_auto_update)
        self.system_setting_ui.switchBtn.checkedChanged.connect(self.change_check_update)
        self.first_ui.pushButton.clicked.connect(self.update_subs)  # 更新订阅
        self.config_setting_ui.pushButton_2.clicked.connect(self.output_conf)  # 导出配置文件
        self.config_setting_ui.pushButton.clicked.connect(self.get_conf_from_qr)  # 通过二维码导入
        self.first_ui.pushButton_1.clicked.connect(self.start_ping_th)  # 测试延时
        self.system_setting_ui.checkupdateButton.clicked.connect(self.check_update)  # 检查更新
        self.config_setting_ui.lineEdit.returnPressed.connect(self.change_subs_addr)  # 更新订阅操作
        self.config_setting_ui.pushButton_3.clicked.connect(self.change_subs_addr)  # 更新订阅操作
        self.config_setting_ui.lineEdit_2.returnPressed.connect(self.get_conf_from_uri)  # 解析URI获取配置
        self.conn_start.sinOut.connect(self.alert)  # 得到连接反馈
        self.disconn_start.sinOut.connect(self.alert)  # 得到断开连接反馈
        self.update_addr_start.sinOut.connect(self.alert)  # 得到反馈
        self.update_subs_start.sinOut.connect(self.alert)   # 得到反馈
        self.ping_start.sinOut.connect(self.alert)  # 得到反馈
        self.check_update_start.sinOut.connect(self.alert)
        self.version_update_start.sinOut.connect(self.alert)

        # 设置最小化到托盘
        SystemTray(self)
Exemple #9
0
    def alert(self, tp):
        """
        操作反馈
        """
        tp, rs, ret, row = tp
        if rs == "@@OK@@":
            if tp == "conn":
                # QMessageBox.information(self, "连接成功", self.tr("连接成功!当前状态: " + ret))
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '连接成功!当前状态: " + ret + "'"
                subprocess.call([shell], shell=True)
                self.display_all_conf()

            elif tp == "disconn":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL VPN连接已断开"
                subprocess.call([shell], shell=True)
                self.display_all_conf()

            elif tp == "addr":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 更新订阅地址成功"
                subprocess.call([shell], shell=True)
                self.v2rayL = V2rayL()
                self.display_all_conf()

            elif tp == "update":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 订阅更新完成"
                subprocess.call([shell], shell=True)
                self.v2rayL = V2rayL()
                self.display_all_conf()

            elif tp == "ping":
                self.first_ui.time.setText(str(ret)+"ms")

            elif tp == "ckud":
                if not row:
                    shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                    subprocess.call([shell], shell=True)
                else:
                    choice = QMessageBox.question(self, "检查更新", "最新版本: v{}"
                                                  "\n更新内容:\n{}\n是否更新?".format(
                        row.json()['tag_name'],
                        row.json()['body']),
                                                  QMessageBox.Yes | QMessageBox.No, QMessageBox.Yes)
                    if choice == QMessageBox.Yes:
                        shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                        subprocess.call([shell], shell=True)
                        self.version_update_start.url = row.json()["assets"][1]['browser_download_url']
                        self.version_update_start.start()

            elif tp == "vrud":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL '{}'".format(ret)
                subprocess.call([shell], shell=True)

        else:
            if tp == "addr":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL 地址设置错误"
                subprocess.call([shell], shell=True)
                self.subs_child_ui.lineEdit.setText(self.v2rayL.url)

            elif tp == "conn":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)
                self.display_all_conf()

            elif tp == "disconn":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)
                self.display_all_conf()

            elif tp == "ckud":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)

            elif tp == "vrud":
                shell = "notify-send -i /etc/v2rayL/images/logo.ico v2rayL {}".format(ret)
                subprocess.call([shell], shell=True)