vappman 0.9.4__tar.gz → 0.9.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {vappman-0.9.4 → vappman-0.9.5}/PKG-INFO +3 -3
- {vappman-0.9.4 → vappman-0.9.5}/README.md +1 -0
- {vappman-0.9.4 → vappman-0.9.5}/pyproject.toml +1 -1
- {vappman-0.9.4 → vappman-0.9.5}/vappman/main.py +10 -12
- vappman-0.9.4/deploy +0 -7
- {vappman-0.9.4 → vappman-0.9.5}/.gitignore +0 -0
- {vappman-0.9.4 → vappman-0.9.5}/LICENSE +0 -0
- {vappman-0.9.4 → vappman-0.9.5}/images/screen-2024-06-23-v0.7.mkv +0 -0
- {vappman-0.9.4 → vappman-0.9.5}/images/vappman-with-filter.png +0 -0
- {vappman-0.9.4 → vappman-0.9.5}/vappman/PowerWindow.py +0 -0
- {vappman-0.9.4 → vappman-0.9.5}/vappman/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: vappman
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.5
|
|
4
4
|
Summary: A visual wrapper for appman
|
|
5
5
|
Keywords: app,installer,manager,appimages
|
|
6
6
|
Author-email: Joe Defen <joedef@google.com>
|
|
@@ -9,7 +9,6 @@ Description-Content-Type: text/markdown
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
-
License-File: LICENSE
|
|
13
12
|
Requires-Dist: importlib-metadata; python_version<"3.8"
|
|
14
13
|
Project-URL: Bug Tracker, https://github.com/joedefen/vappman/issues
|
|
15
14
|
Project-URL: Homepage, https://github.com/joedefen/vappman
|
|
@@ -66,6 +65,7 @@ But it does NOT cover:
|
|
|
66
65
|
* Each time the filter is changed, the position jumps to the top of the listing.
|
|
67
66
|
* Use `i` to install apps, and `r` to remove apps. When you install or remove an app, `appman` drops out of `curses` mode, runs the `appman` command so you can see the result, and then prompts your to hit ENTER to return to `vappman.
|
|
68
67
|
* Use `t` to "test" an installed app. This launches a terminal emulator and then the app so you can see issues. This is not for daily use obviously, but for after install or when having unknown issues and you wish to start the investigation.
|
|
68
|
+
* You must have one of these terminial emulators (and they are searched for in order): konsole, gnome-terminal, xfce4-terminal, lxterminal, alacritty, guake, tilix, sakura, terminator, or kitty.
|
|
69
69
|
|
|
70
70
|
## Example Screenshot (of v0.9 ... current release will vary slightly)
|
|
71
71
|
.
|
|
@@ -50,6 +50,7 @@ But it does NOT cover:
|
|
|
50
50
|
* Each time the filter is changed, the position jumps to the top of the listing.
|
|
51
51
|
* Use `i` to install apps, and `r` to remove apps. When you install or remove an app, `appman` drops out of `curses` mode, runs the `appman` command so you can see the result, and then prompts your to hit ENTER to return to `vappman.
|
|
52
52
|
* Use `t` to "test" an installed app. This launches a terminal emulator and then the app so you can see issues. This is not for daily use obviously, but for after install or when having unknown issues and you wish to start the investigation.
|
|
53
|
+
* You must have one of these terminial emulators (and they are searched for in order): konsole, gnome-terminal, xfce4-terminal, lxterminal, alacritty, guake, tilix, sakura, terminator, or kitty.
|
|
53
54
|
|
|
54
55
|
## Example Screenshot (of v0.9 ... current release will vary slightly)
|
|
55
56
|
.
|
|
@@ -285,8 +285,8 @@ class Vappman:
|
|
|
285
285
|
def run_appman(self, cmd):
|
|
286
286
|
""" Run a 'appman' command """
|
|
287
287
|
Window.stop_curses()
|
|
288
|
-
os.system(f'clear; stty sane; {cmd};'
|
|
289
|
-
+ r' /bin/echo -e "\n\n===== Press ENTER
|
|
288
|
+
os.system(f'clear; stty sane; /bin/echo + {cmd}; {cmd};'
|
|
289
|
+
+ r' /bin/echo -e "\n\n===== Press ENTER to return to vappman ====> \c"; read FOO')
|
|
290
290
|
self.installs = self.get_installed()
|
|
291
291
|
Window._start_curses()
|
|
292
292
|
|
|
@@ -309,16 +309,14 @@ class Vappman:
|
|
|
309
309
|
[ 'gnome-terminal', '--', 'bash', '-c', '"{command}"; exec bash' ],
|
|
310
310
|
[ 'xfce4-terminal', '--hold', '--command="{command}"' ],
|
|
311
311
|
[ 'lxterminal', '-e', """bash -c '"{command}"; echo; read -p "Press Enter to close..."'"""],
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
# [
|
|
319
|
-
# [
|
|
320
|
-
# [ guake', ],
|
|
321
|
-
# [ yakuake', ],
|
|
312
|
+
[ 'alacritty', '--hold', '-e', 'sh', '-c', '"{command}"' ],
|
|
313
|
+
[ 'guake', '--new-tab', '--execute-command="sh -c \'{command} ; exec $SHELL\'"' ],
|
|
314
|
+
[ 'tilix', '-e', 'sh -c "{command} ; exec $SHELL"' ],
|
|
315
|
+
[ 'sakura', '-x', 'sh -c "{command} ; bash"' ],
|
|
316
|
+
[ 'terminator', '-e', 'bash -c " {command} ; bash "' ],
|
|
317
|
+
[ 'kitty', '--hold', '/bin/sh', '-c', '"{command}"' ],
|
|
318
|
+
# [ hyper', ], # cannot be supported
|
|
319
|
+
# [ yakuake', ], # cannot be supported
|
|
322
320
|
]
|
|
323
321
|
for maybe in maybes:
|
|
324
322
|
if shutil.which(maybe[0]):
|
vappman-0.9.4/deploy
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|