nexus-tui 0.1.0__tar.gz → 0.1.2__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.
- {nexus_tui-0.1.0 → nexus_tui-0.1.2}/PKG-INFO +10 -8
- {nexus_tui-0.1.0 → nexus_tui-0.1.2}/README.md +8 -6
- {nexus_tui-0.1.0 → nexus_tui-0.1.2}/pyproject.toml +2 -2
- {nexus_tui-0.1.0 → nexus_tui-0.1.2}/.gitignore +0 -0
- {nexus_tui-0.1.0 → nexus_tui-0.1.2}/LICENSE +0 -0
- {nexus_tui-0.1.0 → nexus_tui-0.1.2}/nexus/tools.toml +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nexus-tui
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.1.2
|
|
4
|
+
Summary: A TUI orchestrator to manage and launch your command-line tools without memorizing commands
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
7
|
Requires-Dist: pydantic>=2.12.5
|
|
@@ -10,13 +10,14 @@ Description-Content-Type: text/markdown
|
|
|
10
10
|
|
|
11
11
|
# Nexus
|
|
12
12
|
|
|
13
|
-
Nexus is a
|
|
13
|
+
Nexus is a TUI orchestrator designed to manage and launch your command-line tools from a single, intuitive interface. It eliminates the need to memorize complex commands or flags by providing a centralized dashboard for all your development utilities and projects.
|
|
14
14
|
|
|
15
15
|
## Prerequisites
|
|
16
16
|
|
|
17
17
|
* Python 3.12 or newer.
|
|
18
18
|
* The `uv` package manager.
|
|
19
|
-
* A modern terminal emulator
|
|
19
|
+
* **Recommended**: A modern terminal emulator with TrueColor support (e.g., [Windows Terminal](https://aka.ms/terminal), [ghostty](https://ghostty.org/), [Kitty](https://sw.kovidgoyal.net/kitty/), or [WezTerm](https://wezfurlong.org/wezterm/)).
|
|
20
|
+
* **Recommended**: A [Nerd Font](https://www.nerdfonts.com/) for optimal icon rendering.
|
|
20
21
|
|
|
21
22
|
## Installation
|
|
22
23
|
|
|
@@ -114,10 +115,11 @@ nexus
|
|
|
114
115
|
|
|
115
116
|
* **Arrow Keys**: Navigate through lists.
|
|
116
117
|
* **Enter**: Confirm selection or launch tool.
|
|
117
|
-
* **F**: Toggle the favorite status of a tool.
|
|
118
|
-
* **
|
|
119
|
-
* **Esc**:
|
|
120
|
-
* **
|
|
118
|
+
* **Ctrl+F**: Toggle the favorite status of a tool.
|
|
119
|
+
* **TypeAnywhere**: Instantly filter lists by typing in the search bar.
|
|
120
|
+
* **Esc**: Reset the search filter.
|
|
121
|
+
* **Ctrl+B**: Go back (on picker screens).
|
|
122
|
+
* **Ctrl+Q**: Exit the application.
|
|
121
123
|
|
|
122
124
|
## Development
|
|
123
125
|
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
# Nexus
|
|
2
2
|
|
|
3
|
-
Nexus is a
|
|
3
|
+
Nexus is a TUI orchestrator designed to manage and launch your command-line tools from a single, intuitive interface. It eliminates the need to memorize complex commands or flags by providing a centralized dashboard for all your development utilities and projects.
|
|
4
4
|
|
|
5
5
|
## Prerequisites
|
|
6
6
|
|
|
7
7
|
* Python 3.12 or newer.
|
|
8
8
|
* The `uv` package manager.
|
|
9
|
-
* A modern terminal emulator
|
|
9
|
+
* **Recommended**: A modern terminal emulator with TrueColor support (e.g., [Windows Terminal](https://aka.ms/terminal), [ghostty](https://ghostty.org/), [Kitty](https://sw.kovidgoyal.net/kitty/), or [WezTerm](https://wezfurlong.org/wezterm/)).
|
|
10
|
+
* **Recommended**: A [Nerd Font](https://www.nerdfonts.com/) for optimal icon rendering.
|
|
10
11
|
|
|
11
12
|
## Installation
|
|
12
13
|
|
|
@@ -104,10 +105,11 @@ nexus
|
|
|
104
105
|
|
|
105
106
|
* **Arrow Keys**: Navigate through lists.
|
|
106
107
|
* **Enter**: Confirm selection or launch tool.
|
|
107
|
-
* **F**: Toggle the favorite status of a tool.
|
|
108
|
-
* **
|
|
109
|
-
* **Esc**:
|
|
110
|
-
* **
|
|
108
|
+
* **Ctrl+F**: Toggle the favorite status of a tool.
|
|
109
|
+
* **TypeAnywhere**: Instantly filter lists by typing in the search bar.
|
|
110
|
+
* **Esc**: Reset the search filter.
|
|
111
|
+
* **Ctrl+B**: Go back (on picker screens).
|
|
112
|
+
* **Ctrl+Q**: Exit the application.
|
|
111
113
|
|
|
112
114
|
## Development
|
|
113
115
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nexus-tui"
|
|
3
|
-
version = "0.1.
|
|
4
|
-
description = "A
|
|
3
|
+
version = "0.1.2"
|
|
4
|
+
description = "A TUI orchestrator to manage and launch your command-line tools without memorizing commands"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.12"
|
|
7
7
|
dependencies = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|