aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFredrik Salomonsson <plattfot@posteo.net>2021-01-17 14:30:19 -0800
committerFredrik Salomonsson <plattfot@posteo.net>2021-01-17 14:30:19 -0800
commita6d76724e621e828f54a9b8beba9163e50b64d83 (patch)
tree8482a8485a15aea39d9a6603faccff7abc5a2016
parent1b890e939e18c3f4cc5ccffa7561306a07151eba (diff)
downloadpinentry-rofi-a6d76724e621e828f54a9b8beba9163e50b64d83.tar.gz
Update readme to add section on installing it with guix
-rw-r--r--README.org29
1 files changed, 24 insertions, 5 deletions
diff --git a/README.org b/README.org
index 1d97413..9a8bf9d 100644
--- a/README.org
+++ b/README.org
@@ -5,7 +5,7 @@
* Description
Based on [[https://gist.github.com/sardemff7/759cbf956bea20d382a6128c641d2746][this gist]]
- Simple pinentry gui using rofi written in GNU guile.
+ Simple [[https://www.gnupg.org/related_software/pinentry/index.html][pinentry]] gui using [[https://github.com/davatorium/rofi][rofi]] written in [[https://www.gnu.org/software/guile/][GNU guile]].
It's similar in functionality as the gist but this one doesn't force
the width to be 27 and doesn't depend on systemd.
@@ -21,15 +21,34 @@
content is now a [[https://www.gnu.org/software/guile/manual/html_node/General-Information-about-Modules.html][guile module]], which the executable now calls.
* Install
-** From Source
+** Guix (Recommended)
+ To install it using [[https://guix.gnu.org/][guix]], run
+ #+begin_src shell
+ guix install pinentry-rofi
+ #+end_src
- See [[file:HACKING][HACKING]] on how to build this from source
+ Just make sure you have a version of `guix` that is newer than Jan
+ 8 2021.
+
+ The binary location is then `$HOME/.guix-profile/bin/pinentry-rofi`
+ were the `$HOME` is the home location of the user you used to
+ install it with. E.g. `/home/$USER` for a normal user and `/root`
+ for the root user.
+
+ Install it with guix is recommended as that will work on most linux
+ distributions.
** Arch Linux
- Clone my aur reop and the build the package using the PKGBUILD:
+ Clone my aur repo and the build the package using the PKGBUILD:
- #+begin_src bash
+ #+begin_src shell
git clone https://github.com/plattfot/pinentry-rofi-aur.git
cd pinentry-rofi-aur
makepkg -ic
#+end_src
+
+ The binary location is then `/usr/bin/pinentry-rofi`.
+** From Source
+
+ See [[file:HACKING][HACKING]] on how to build this from source
+