Compare commits

..

2 commits

Author SHA1 Message Date
1fbfad9364 updated README 2024-02-22 14:20:13 -05:00
5754c22e1a added binary information in preparation for crates.io publish 2024-02-19 21:17:48 -05:00
2 changed files with 26 additions and 11 deletions

View file

@ -8,7 +8,9 @@ homepage = "https://git.vwolfe.io/valerie/remux"
repository = "https://git.vwolfe.io/valerie/remux" repository = "https://git.vwolfe.io/valerie/remux"
license = "MIT" license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]]
name = "remux"
path = "src/main.rs"
[dependencies] [dependencies]
pico-args = { version = "0.5.0", features = [ "combined-flags", "eq-separator" ] } pico-args = { version = "0.5.0", features = [ "combined-flags", "eq-separator" ] }

View file

@ -47,21 +47,34 @@ ReMux depends on [tmux](https://github.com/tmux/tmux).
## Installation ## Installation
### From Binary ### Manual Install
Copy the compiled binary from the [releases page](https://git.vwolfe.io/valerie/remux/releases) <details>
to a directory in `$PATH`, such as `/usr/bin/`. <summary>Release Binary</summary>
Copy the compiled binary from the <a href="https://git.vwolfe.io/valerie/remux/releases">releases page</a>
to a directory in <code>$PATH</code>, such as <code>/usr/bin/</code>.
</details>
### From Source <details>
<summary>Compile from Source</summary>
Compile using cargo with the command <code>cargo build --release</code> and copy
the file from <code>target/release/</code> to a directory in <code>$PATH</code>,
such as <code>/usr/bin/</code>.
</details>
Compile using cargo with the command `cargo build --release` and copy the file <details>
from `target/release/` to a directory in `$PATH`, such as `/usr/bin/`. <summary>makepkg (AUR)</summary>
Clone the <a href="https://aur.archlinux.org/remux.git">AUR Repository</a> and
run the command <code>makepkg --install</code>.
</details>
### Arch Linux (AUR) ### Package Managers
Install the package from the [`remux` AUR Package](https://aur.archlinux.org/packages/remux), <details>
either using an AUR package manager, or by cloning the [AUR Repository](https://aur.archlinux.org/remux.git) <summary>Arch Linux (AUR): <code>remux</code></summary>
and running the command `makepkg --install`. Install the package from the <a href="https://aur.archlinux.org/packages/remux"><code>remux</code> AUR Package</a>
using an AUR package manager such as <a href="https://github.com/Morganamilo/paru"><code>paru</code></code>.
</details>
## Libraries ## Libraries