Compare commits

3 Commits

Author SHA1 Message Date
9a83de90fd fix pkexec on debian 2025-07-09 18:35:15 +02:00
fbba0028ab german translate fix and remove suport on Open Suse 2025-07-09 13:34:39 +02:00
9873a293f7 replace networkmanager comand with systemctl for Suse 2025-07-09 11:45:16 +02:00
3 changed files with 5 additions and 2 deletions

View File

@@ -20,5 +20,8 @@ and if not it is downloaded from both sources and only imported when all the key
This is to ensure that no manipulated software is used.
# Not currently supported
- Open Suse Tumbleweed and Leap (Let's get back)
# Screenshots
[![wire-py.png](https://fb.ilunix.de/api/public/dl/ZnfG9gxv?inline=true)](https://fb.ilunix.de/share/ZnfG9gxv)

View File

@@ -128,7 +128,7 @@ class Detector:
arch = ["Arch Linux", "Manjaro", "EndeavourOS", "ArcoLinux", "Garuda Linux"]
if os_system in deb:
result = subprocess.run(
["apt list --installed | grep polkit"],
["which pkexec"],
capture_output=True,
shell=True,
text=True,
@@ -233,7 +233,7 @@ class Detector:
elif os_system == "SUSE Tumbleweed" or os_system == "SUSE Leap":
result = subprocess.run(
["zypper search --installed-only | grep NetworkManager"],
["systemctl status NetworkManager"],
capture_output=True,
shell=True,
text=True,