44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
# run_executable.py
|
|
#
|
|
# Copyright 2023 kramo
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import logging
|
|
import os
|
|
import subprocess
|
|
from shlex import quote
|
|
|
|
from cartridges import shared
|
|
|
|
|
|
def run_executable(executable) -> None:
|
|
args = (
|
|
"flatpak-spawn --host /bin/sh -c " + quote(executable) # Flatpak
|
|
if os.getenv("FLATPAK_ID") == shared.APP_ID
|
|
else executable # Others
|
|
)
|
|
|
|
logging.info("Launching `%s`", str(args))
|
|
# pylint: disable=consider-using-with
|
|
subprocess.Popen(
|
|
args,
|
|
cwd=shared.home,
|
|
shell=True,
|
|
start_new_session=True,
|
|
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP if os.name == "nt" else 0, # type: ignore
|
|
)
|