hostnamectl; # tested on
Static hostname: debian12DevPython
Operating System: Debian GNU/Linux 12 (bookworm) 
Kernel: Linux 6.1.0-20-amd64
Architecture: x86-64

python --version
Python 3.11.2; # tested on

vim run_script_in_external_terminal.py
#!/usr/bin/env python
import subprocess

process = subprocess.Popen('/usr/bin/mate-terminal -e /run/some/script.sh'.split(), stdout=subprocess.PIPE)
output, error = process.communicate()
if error:
    print(error)
else:
    blockdevices = output

liked this article?

  • only together we can create a truly free world
  • plz support dwaves to keep it up & running!
  • (yes the info on the internet is (mostly) free but beer is still not free (still have to work on that))
  • really really hate advertisement
  • contribute: whenever a solution was found, blog about it for others to find!
  • talk about, recommend & link to this blog and articles
  • thanks to all who contribute!
admin