From 81fb030b66879a978387ce2e45530318eb4eaa60 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Wed, 31 Mar 2021 22:02:16 +0530 Subject: [PATCH] Rebrand NimCoon to Nimcoon Apparently Coon is an American cussword. Nimcoon is now one word, not two. Signed-off-by: Joseph Nuthalapati --- README.md | 12 ++++++------ nimcoon.el | 20 ++++++++++---------- src/nimcoon.nim | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 2b09f97..13cb14a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# NimCoon +# Nimcoon Play videos from YouTube and PeerTube from the command line using your preferred desktop media player. @@ -28,7 +28,7 @@ I tried all kinds of alternative YouTube players for the desktop. Most are eithe YouTube's business incentive is to make you watch as many videos as possible. If you open the YouTube website and are logged into it, you will just get distracted by recommendations and forget why you opened it in the first place. You might have wanted to watch a conference talk but end up going down a rabbit hole of other "interesting" videos customized for you. -NimCoon has a spartan design. It doesn't even show images of the search results. It doesn't let you browse YouTube. You have to explicitly search for something. +Nimcoon has a spartan design. It doesn't even show images of the search results. It doesn't let you browse YouTube. You have to explicitly search for something. I have had better success with managing my YouTube consumption after shifting to this tool. Settings inspired by Pinafore's wellness settings. @@ -91,7 +91,7 @@ npm install --global peerflix webtorrent-cli ### Installing using Nimble -NimCoon can be installed from Nimble repositories: +Nimcoon can be installed from Nimble repositories: ``` sh nimble install nimcoon @@ -144,7 +144,7 @@ again. ### Command line arguments -NimCoon provides both interactive and non-interactive arguments with significant +Nimcoon provides both interactive and non-interactive arguments with significant overlap. But some arguments might only be present in one mode. Non-interactive arguments are specified to the nimcoon program and apply @@ -159,7 +159,7 @@ case-by-case basis using the interactive arguments. | -d, --download | Download video or music | | -a, --auto-play | Play the next search result (YouTube only) | -Feel free to use these options in any combination. NimCoon will show a helpful +Feel free to use these options in any combination. Nimcoon will show a helpful error message if you pick incompatible options. Interactive arguments are provided during selection of a search result. These @@ -178,7 +178,7 @@ options as single characters. i.e | -d, --download | Download video or music | | -a, --auto-play | Play the next search result (YouTube only) | -Auto-playing videos leads to binge watching. The default option in NimCoon is to +Auto-playing videos leads to binge watching. The default option in Nimcoon is to support auto-play for music only. ## Development diff --git a/nimcoon.el b/nimcoon.el index 90f15e4..5f01750 100644 --- a/nimcoon.el +++ b/nimcoon.el @@ -7,24 +7,24 @@ ;;; Non-interactive functions to respond to URL clicks (defun nimcoon-play-url (url &rest args) - "Play given URL in NimCoon." + "Play given URL in Nimcoon." (start-process "nimcoon" nil "nimcoon" url)) -;; Play all YouTube URLs in NimCoon +;; Play all YouTube URLs in Nimcoon (setq browse-url-browser-function (quote (("youtu\\.?be" . nimcoon-play-url) ("." . browse-url-default-browser)))) (defun run-nimcoon(args query) - "Search by QUERY and play in NimCoon." + "Search by QUERY and play in Nimcoon." (call-process "nimcoon" nil 0 nil args query)) (defun nimcoon-search(args query) "Search by QUERY with the given ARGS." - (with-output-to-temp-buffer "*NimCoon search results*" - (call-process "nimcoon" nil "*NimCoon search results*" t args query) - (with-current-buffer "*NimCoon search results*" + (with-output-to-temp-buffer "*Nimcoon search results*" + (call-process "nimcoon" nil "*Nimcoon search results*" t args query) + (with-current-buffer "*Nimcoon search results*" (org-mode)))) ;;; Interactive functions @@ -44,9 +44,9 @@ (interactive "sSearch query: ") (run-nimcoon "-dlm" query)) -;; Assumes only one process exists. Must capture the pid of the running NimCoon process and only kill it. +;; Assumes only one process exists. Must capture the pid of the running Nimcoon process and only kill it. (defun nimcoon-kill-background-processes() - "Kill NimCoon process running in the background. Useful for stopping background music." + "Kill Nimcoon process running in the background. Useful for stopping background music." (interactive) (shell-command "kill `pgrep nimcoon` `pgrep mpv` `pgrep vlc`")) @@ -62,8 +62,8 @@ ;;; Keybindings (map! :leader - ;;; N --- NimCoon - (:prefix-map ("N" . "NimCoon") + ;;; N --- Nimcoon + (:prefix-map ("N" . "Nimcoon") (:prefix ("d" . "Download") :desc "Video" "v" #'nimcoon-download-video :desc "Music" "m" #'nimcoon-download-music) diff --git a/src/nimcoon.nim b/src/nimcoon.nim index 1fd3ba6..9b3c6af 100644 --- a/src/nimcoon.nim +++ b/src/nimcoon.nim @@ -39,7 +39,7 @@ proc parseArguments(): CommandLineOptions = of cmdEnd: discard if searchQuery == "": - stderr.writeLine "NimCoon doesn't permit browsing. You must provide a search query." + stderr.writeLine "Nimcoon doesn't permit browsing. You must provide a search query." quit(1) (searchQuery, options) -- 2.43.0