--- /dev/null
+Local installation EL8:
+
+```
+$ pipx install -e . --force --python /usr/bin/python3.9
+```
+
+Local installation EL9:
+
+```
+$ pipx install -e . --force --python /usr/bin/python3.9
+```
--- /dev/null
+import os
+import subprocess
+
+
+def create():
+ subprocess.run(["distrobox", "create", "-i", "quay.io/alexpdp7/workstation:latest"], check=True)
+
+
+def enter():
+ os.execvp("distrobox", ["distrobox", "enter", "workstation-latest"])
[tool.poetry.scripts]
ruscreen = 'p7s.ruscreen:main'
mbsync_config = 'p7s.mbsync:generate_config'
+db-create = 'p7s.distrobox:create'
+db-enter = 'p7s.distrobox:enter'