File exec-efibootmgr.patch of Package efibootmgr-gui
diff --color -rub a/efibootmgr_gui.py b/efibootmgr_gui.py
--- a/efibootmgr_gui.py 2020-11-19 21:29:33.626381000 +0600
+++ b/efibootmgr_gui.py 2020-11-19 21:47:17.118416733 +0600
@@ -28,7 +28,7 @@
def run_efibootmgr():
try:
- output = subprocess.check_output([ "efibootmgr", "-v" ]).decode('UTF-8').strip().split('\n')
+ output = subprocess.check_output([ "/usr/sbin/efibootmgr", "-v" ]).decode('UTF-8').strip().split('\n')
logging.debug(repr(output))
return output
except subprocess.CalledProcessError as e: