From 6d4ec3a9e50250ca539c6e3bccd122ae6cd78b09 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Sun, 19 Sep 2021 16:13:07 +0200 Subject: [PATCH] Updated README --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e913a8..d6e52b6 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,9 @@ To make install the script, just clone this repo and then create a symlink to `volumectl` in whatever directory you want (as long as it is in your `$PATH` variable, so that the script will be executable from anywhere in the terminal, see this [link](https://www.tecmint.com/set-path-variable-linux-permanently/) -for more info about the `$PATH` variable). +for more info about the `$PATH` variable). In the commands below I'm using the +`$HOME/.local/bin`, which by default is **not** in the `$PATH` variable, so make +sure you set it. ```bash git clone https://github.com/karma-riuk/volumectl $HOME/.local/lib/volumectl @@ -58,6 +60,15 @@ mkdir -p $HOME/.local/bin # just to make sure that the ~/.local/bin directory ex ln -s $HOME/.local/lib/volumectl $HOME/.local/bin/volumectl ``` +#### Option 2 (not recommended): Downloading the script directly + +```bash +mkdir -p $HOME/.local/bin +wget -O $HOME/.local/bin/volumectl https://raw.githubusercontent.com/karma-riuk/volumectl/master/volumectl +chmod +x $HOME/.local/bin/volumectl +``` + +