X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/af9a966fce7d7a4b6e3ce8018f2a74ace76c2823..e26cfd934e96c3860f3860a2e85ebf2b954894be:/README.md diff --git a/README.md b/README.md index e4782eb..82dad57 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,18 @@ Nim Coon depends on the following: - mpv (recommended) or vlc - peerflix (for magnet links) +Install VLC or MPV using your distribution's package manager. + +Install YouTube-dl +``` sh +pip3 install --user youtube-dl +``` + +Install PeerFlix +```sh +npm install --global peerflix +``` + ### Installing using Nimble NimCoon can be installed from Nimble repositories: @@ -97,3 +109,22 @@ One-liner for compiling and running ```sh nim c -d:ssl -r src/nimcoon.nim 'nim lang' ``` + +## Privacy + +To avoid storing your nimcoon searches in `zsh` history, run this command + +```sh +setopt histignorespace +``` + +Then, add a space before typing nimcoon in the shell, like " nimcoon" + +```sh + nimcoon "this is private" +``` + +The same can be achieved in `bash` by setting an environment variable +```sh +export HISTCONTROL=ignoreboth +```