fix uncaught error in checking for snap

This commit is contained in:
shadeyg56 2023-02-03 14:48:01 -06:00
parent dadfae087f
commit b38919f56b
1 changed files with 7 additions and 7 deletions

View File

@ -256,17 +256,16 @@ def disable_power_profiles_daemon():
# default gnome_power_svc_disable func (balanced)
def gnome_power_svc_disable():
# check if snap package installed
snap_pkg_check = call(['snap', 'list', '|', 'grep', 'auto-cpufreq'],
stdout=subprocess.DEVNULL,
stderr=subprocess.STDOUT)
snap_pkg_check = 0
if systemctl_exists:
# 0 is active
if gnome_power_status != 0:
try:
# check if snap package installed
snap_pkg_check = call(['snap', 'list', '|', 'grep', 'auto-cpufreq'],
stdout=subprocess.DEVNULL,
stderr=subprocess.STDOUT)
# check if snapd is present and if snap package is installed | 0 is success
if snap_pkg_check == 0:
print("GNOME Power Profiles Daemon is already disabled, it can be re-enabled by running:\n"
@ -280,7 +279,8 @@ def gnome_power_svc_disable():
except:
# snapd not found on the system
print("There was a problem, couldn't determine GNOME Power Profiles Daemon")
snap_pkg_check = 0
if gnome_power_status == 0 and powerprofilesctl_exists:
if snap_pkg_check == 1: