-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor README.md for improved formatting and clarity of available c… #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,23 +13,30 @@ Does need some ass bringing party tonight! | |||||
| source ~/.bashrc | ||||||
| ``` | ||||||
|
|
||||||
| Once installed, all commands are globally available with a `nord_` prefix (e.g. `nord_login`).# Available Commands Local File | Installed Global Command | Description | :--- | :--- | :--- | `login.sh` | `nord_login` | Authenticate with NordVPN | `logout.sh` | `nord_logout` | Log out of NordVPN | | ||||||
| `config.sh` | `nord_config` | Configure NordVPN routing and settings | | ||||||
| `connect.sh` | `nord_connect <peer>` | Connect to a Meshnet peer | | ||||||
| `exit_node.sh` | `nord_exit_node <peer>` | Set a peer as your exit node | | ||||||
| `list_peers.sh` | `nord_list_peers` | List available Meshnet peers | | ||||||
| `set_nickname.sh` | `nord_set_nickname` | Set a local nickname for the device | | ||||||
| `reset.sh` | `nord_reset` | Reset NordVPN settings to defaults | | ||||||
| Once installed, all commands are globally available with a `nord_` prefix (e.g. `nord_login`). | ||||||
|
|
||||||
| ## Available Commands | ||||||
|
|
||||||
| | Local File | Installed Global Command | Description | | ||||||
| |:-----------|:-------------------------|:---| | ||||||
| | `login.sh` | `nord_login` | Authenticate with NordVPN | | ||||||
| | `logout.sh` | `nord_logout` | Log out of NordVPN | | ||||||
| | `config.sh` | `nord_config` | Configure NordVPN routing and settings | | ||||||
| | `connect.sh` | `nord_connect <peer>` | Connect to a Meshnet peer | | ||||||
| | `exit_node.sh` | `nord_exit_node <peer>` | Set a peer as your exit node | | ||||||
| | `list_peers.sh` | `nord_list_peers` | List available Meshnet peers | | ||||||
| | `set_nickname.sh` | `nord_set_nickname` | Set a local nickname for the device | | ||||||
| | `reset.sh` | `nord_reset` | Reset NordVPN settings to defaults | | ||||||
|
|
||||||
| ## Setup Examples | ||||||
|
|
||||||
| Get a beautiful naighbour, love her, proposed to her, go puse for | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Replace the malformed setup instruction. Line 33 is not a usable instruction and contains spelling and grammar errors. Replace it with a clear description of the following commands. Proposed fix-Get a beautiful naighbour, love her, proposed to her, go puse for
+Use the following commands to configure an exit node and connect to a peer:📝 Committable suggestion
Suggested change
🧰 Tools🪛 LanguageTool[grammar] ~33-~33: Ensure spelling is correct (QB_NEW_EN_ORTHOGRAPHY_ERROR_IDS_1) 🤖 Prompt for AI AgentsSource: Linters/SAST tools |
||||||
|
|
||||||
| ### Set Exit Node | ||||||
|
|
||||||
| nord_exit_node mesh-raspberry | ||||||
| 1 | ||||||
| 2 ### Connect to Peer | ||||||
| nord_exit_node mesh-raspberry | ||||||
|
|
||||||
| ### Connect to Peer | ||||||
|
|
||||||
| ```bash | ||||||
| nord_connect mesh-raspberry | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #! /usr/bin/bash | ||
|
|
||
| nordvpn status |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: terjeinnerdal/scripts
Length of output: 487
🏁 Script executed:
Repository: terjeinnerdal/scripts
Length of output: 222
🏁 Script executed:
Repository: terjeinnerdal/scripts
Length of output: 18866
Add
status.shto the installation and command list.copy_scripts.shcopies each.shscript to~/.local/bin/nord_*.status.shexists but is never copied or documented, sonord_statusis unavailable even though command scripts should all be listed here. Addcp status.sh ~/.local/bin/nord_statusinbash/nord/copy_scripts.shand add the matching row to the Available Commands table, or removestatus.shif it is not intended to be installed.🤖 Prompt for AI Agents