From 20d03d941aeeb4f1438771e24415ac4489d39132 Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" Date: Fri, 19 Apr 2024 05:01:33 +0530 Subject: [PATCH] =?UTF-8?q?=E2=8F=B3=20@eshanized=20updated=20the=20reposi?= =?UTF-8?q?tory!!!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- usr/share/blackbox/blackbox.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/usr/share/blackbox/blackbox.py b/usr/share/blackbox/blackbox.py index 0df0c64..0fccad0 100644 --- a/usr/share/blackbox/blackbox.py +++ b/usr/share/blackbox/blackbox.py @@ -851,10 +851,10 @@ class Main(Gtk.Window): install_keyring = fn.install_snigdhaos_keyring() if install_keyring == 0: - fn.logger.info("Installation of ArcoLinux keyring = OK") - rc = fn.add_arco_repos() + fn.logger.info("Installation of Snigdha OS keyring = OK") + rc = fn.add_snigdhaos_repos() if rc == 0: - fn.logger.info("ArcoLinux repos added into %s" % fn.pacman_conf) + fn.logger.info("Snigdha OS repos added into %s" % fn.pacman_conf) widget.set_active(True) else: message_dialog = MessageDialog( @@ -878,8 +878,8 @@ class Main(Gtk.Window): else: message_dialog = MessageDialog( "Error", - "Failed to install ArcoLinux keyring", - "Errors occurred during install of the ArcoLinux keyring", + "Failed to install Snigdha OS keyring", + "Errors occurred during install of the Snigdha OS keyring", "Command run = %s\n\n Error = %s" % (install_keyring["cmd_str"], install_keyring["output"]), "error", @@ -896,12 +896,12 @@ class Main(Gtk.Window): return True # toggle is currently on if widget.get_state() == True and widget.get_active() == False: - remove_keyring = fn.remove_arco_keyring() + remove_keyring = fn.remove_snigdhaos_keyring() if remove_keyring == 0: - fn.logger.info("Removing ArcoLinux keyring OK") + fn.logger.info("Removing Snigdha OS keyring OK") - rc = fn.remove_arco_repos() + rc = fn.remove_snigdhaos_repos() if rc == 0: fn.logger.info("ArcoLinux repos removed from %s" % fn.pacman_conf) widget.set_active(False)