From 9e6e3b6b23518eab33b9f2626b0d3148cab48711 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Sun, 26 Mar 2023 20:46:04 +0200 Subject: [PATCH] README: Improve install instructions --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3d055b5..abeed51 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,22 @@ Installation ------------ The [releases page](https://github.com/martinpitt/rtimelog/releases) has automatically built binaries for Linux, Windows, and MacOS. Download the -archive for your operating system, unpack it, and run `rtimelog`. You can copy -that to `/usr/local/bin/` or `~/.bin/` of course. +archive for your operating system, unpack it, and run `rtimelog` from the +unpack directory. + +On Linux, if you want to run rtimelog without specifying a path, you can +install rtimelog into your home directory: + +```sh +mkdir -p ~/bin +tar -C ~/bin -xvf rtimelog_*-linux*.tar.xz +``` + +or as administrator for all users: + +```sh +sudo tar -C /usr/local/bin -xvf rtimelog_*-linux*.tar.xz +``` Building --------