Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2024-06-21 22:09:54 +09:00
parent f48480d39e
commit 56d81212a0
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ def determine_browser():
print("Found the LW, running LibreWolf") print("Found the LW, running LibreWolf")
elif os.path.exists(ffpath) and os.path.isdir(ffpath): elif os.path.exists(ffpath) and os.path.isdir(ffpath):
profile_path = os.path.expanduser(f"/home/{gusr}/.local/share/pmostools/ff_profile/") profile_path = os.path.expanduser(f"/home/{gusr}/.local/share/pmostools/ff_profile/")
command = f'firefox -P kumo --profile "{profile_path}" {run_addrs} &' command = f'firefox -P firefox_kumo --profile "{profile_path}" {run_addrs} &'
print("Found the FF, running Firefox") print("Found the FF, running Firefox")
else: else:
command = f'luakit -U {run_addrs} &' command = f'luakit -U {run_addrs} &'

View File

@ -30,7 +30,7 @@ def determine_browser(run_addrs):
f"/home/{gusr}/.local/share/pmostools/ff_profile/" f"/home/{gusr}/.local/share/pmostools/ff_profile/"
) )
command = ( command = (
f'firefox -P kumo --profile "{profile_path}" {run_addrs} &' f'firefox -P firefox_kumo --profile "{profile_path}" {run_addrs} &'
) )
print("Found the FF, running Firefox") print("Found the FF, running Firefox")
else: else: