-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There is now a custom location for python package.
- Loading branch information
Showing
4 changed files
with
20 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#!/usr/bin/python3 -IOO | ||
|
||
from bubblejail.bubblejail_gui_qt import run_gui | ||
from sys import path | ||
from importlib import import_module | ||
|
||
|
||
run_gui() | ||
path.append('/usr/lib/bubblejail/python_packages') | ||
|
||
import_module('bubblejail.bubblejail_gui_qt').run_gui() # type: ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
#!/usr/bin/python3 -IOO | ||
|
||
from bubblejail.bubblejail_helper import bubblejail_helper_main | ||
from sys import path | ||
from importlib import import_module | ||
|
||
|
||
bubblejail_helper_main() | ||
path.append('/usr/lib/bubblejail/python_packages') | ||
|
||
|
||
import_module('bubblejail.bubblejail_helper' | ||
).bubblejail_helper_main() # type: ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
#!/usr/bin/python3 -IOO | ||
|
||
from bubblejail.bubblejail_cli import bubblejail_main | ||
from sys import path | ||
from importlib import import_module | ||
|
||
|
||
bubblejail_main() | ||
path.append('/usr/lib/bubblejail/python_packages') | ||
|
||
import_module('bubblejail.bubblejail_cli' | ||
).bubblejail_main() # type: ignore |