summaryrefslogtreecommitdiffstats
path: root/usr/share/mageiawelcome/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'usr/share/mageiawelcome/helpers.py')
-rw-r--r--usr/share/mageiawelcome/helpers.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/usr/share/mageiawelcome/helpers.py b/usr/share/mageiawelcome/helpers.py
index 080eb5e..ea581f3 100644
--- a/usr/share/mageiawelcome/helpers.py
+++ b/usr/share/mageiawelcome/helpers.py
@@ -34,14 +34,6 @@ def get_desktop_name2(x):
'X-Cinnamon':'Cinnamon',
}.get(x,'unknown')
-def get_irc_client():
- if os.path.exists("/usr/bin/hexchat"): irc_client = "/usr/bin/hexchat &"
- elif os.path.exists("/usr/bin/xchat-gnome"): irc_client = "/usr/bin/xchat-gnome &"
- elif os.path.exists("/usr/bin/xchat"): irc_client = "/usr/bin/xchat &"
- elif os.path.exists("/usr/bin/konversation"): irc_client = "/usr/bin/konversation &"
- elif os.path.exists("/usr/bin/quassel"): irc_client = "/usr/bin/quassel &"
- else: irc_client = "none"
- return irc_client
def is_installed(name):
return os.WEXITSTATUS(os.system('rpm -q --quiet ' + name))