diff --git a/README.md b/README.md
index 5312b5a..8109659 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Please follow the instruction for your shell:
Bash / Zsh / Fish
> Append the following line to your configuration file:
-> ```shell
+> ```sh
> eval "$(pay-respects bash --alias)"
> eval "$(pay-respects zsh --alias)"
> pay-respects fish --alias | source
@@ -29,7 +29,7 @@ Please follow the instruction for your shell:
> - `--nocnf`: Disables `command_not_found` handler
> Manual aliasing (**DEPRECATED**, do not use):
-> ```shell
+> ```sh
> alias f="$(pay-respects bash)"
> alias f="$(pay-respects zsh)"
> alias f="$(pay-respects fish)"
@@ -41,16 +41,16 @@ Please follow the instruction for your shell:
Nushell
> Add the following output to your configuration file:
-> ```shell
+> ```sh
> pay-respects nushell --alias []
> ```
> Or save it as a file:
-> ```shell
+> ```sh
> pay-respects nushell --alias [] | save -f ~/.pay-respects.nu
> ```
> and source from your config file:
-> ```shell
+> ```sh
> source ~/.pay-respects.nu
> ```
@@ -59,9 +59,14 @@ Please follow the instruction for your shell:
PowerShell
-> Append the following to your profile:
+> Append the following output to your profile:
> ```pwsh
-> pay-respects pwsh --alias [] [--nocnf] [>> $PROFILE] # use the pipe to directly append it to your profile if you like
+> pay-respects pwsh --alias [] [--nocnf]
+> ```
+
+> Or directly pipe the output to your profile:
+> ```pwsh
+> pay-respects pwsh --alias [] [--nocnf] >> $PROFILE
> ```
@@ -77,7 +82,7 @@ Please follow the instruction for your shell:
> pay-respects echos back, if applicable, a `cd` command that can be evaluated by the current working shell.
> General example:
-> ```shell
+> ```sh
> eval $(_PR_SHELL=sh _PR_LAST_COMMAND="git comit" pay-respects)
> ```
@@ -105,7 +110,7 @@ Install from your package manager if available:
> | OS / Distribution | Repository | Instructions |
> |-------------------|-----------------|----------------------------------|
> | Arch Linux | [AUR] | `paru -S pay-respects` (`-bin`) |
-> | Arch Linux | [Arch Linux CN] | `sudo pacman -S pay-respects` |
+> | Arch Linux (ARM) | [Arch Linux CN] | `sudo pacman -S pay-respects` |
> | NixOS / *Any* | [nixpkgs] | `nix-env -iA nixos.pay-respects` |
[AUR]: https://aur.archlinux.org/
@@ -115,7 +120,7 @@ Install from your package manager if available:
Alternatively, install pre-built binaries from [GitHub releases](https://github.com/iffse/pay-respects/releases). An [install script](./install.sh) is available:
-```
+```sh
curl -sSfL https://raw.githubusercontent.com/iffse/pay-respects/main/install.sh | sh
```
@@ -125,14 +130,14 @@ curl -sSfL https://raw.githubusercontent.com/iffse/pay-respects/main/install.sh
> This installation requires you to have Cargo (the Rust package manager) installed.
> Install from [crates.io](https://crates.io/), modules are optional
-> ```shell
+> ```sh
> cargo install pay-respects
> cargo install pay-respects-module-runtime-rules
> cargo install pay-respects-module-request-ai
> ```
> Clone from git and install, suitable for adding custom compile-time rules:
-> ```
+> ```sh
> git clone --depth 1 https://github.com/iffse/pay-respects
> cd pay-respects
> cargo install --path core
diff --git a/modules.md b/modules.md
index cf53769..5f14d9d 100644
--- a/modules.md
+++ b/modules.md
@@ -1,6 +1,6 @@
# Modules
-`pay-respects` followed a very stupid approach ---or better said, *Keep It Simple, Stupid*--- when it comes to implementing the module / plugin system:
+`pay-respects` followed a very stupid approach —or better said, *Keep It Simple, Stupid*— when it comes to implementing the module / plugin system:
- Modules interacts with core program by passing **messages through processes**. In other words, we are sending necessary information to the module, so it can return the required suggestion.
- This approach is the most extendable way, as it has the least amount of limitations compared to:
@@ -49,11 +49,11 @@ If exposing modules in `PATH` annoys you, you can set the `_PR_LIB` environment
Example in a [FHS 3.0 compliant system](https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s06.html):
```shell
# compile-time
-export _DEF_PR_LIB="/usr/lib:$HOME/.local/share"
+export _DEF_PR_LIB="/usr/lib"
# runtime
export _PR_LIB="/usr/lib:$HOME/.local/share"
```
-This is not the default as there is no general way to know its value and depends on distribution (`/usr/lib`, `/usr/libexec`, `/data/data/com.termux/files/usr/libexec`, etc.). System programs usually have a hard-coded path looking for `lib`. If you are a package maintainer for a distribution, setting this value when compiling, so it fits into your distribution standard.
+This is not the default as there is no general way to know its value and depends on distribution (`/usr/lib`, `/usr/libexec`, or NixOS which isn't FHS compliant at all). System programs usually have a hard-coded path looking for `lib`. If you are a package maintainer for a distribution, setting this value when compiling, so it fits into your distribution standard.
If you installed the module with `cargo install`, the binary will be placed in `bin` subdirectory under Cargo's home which should be in the `PATH` anyway. Cargo has no option to place in subdirectories with other names.