2020-05-17 13:04:07 +00:00
|
|
|
|
#+title: Ncmpcpp Configuration (WIP)
|
2020-07-16 12:25:18 +00:00
|
|
|
|
#+setupfile: headers
|
2020-05-17 13:04:07 +00:00
|
|
|
|
#+OPTIONS: auto-id:t
|
|
|
|
|
#+HTML_HEAD_EXTRA: <meta name="description" content="Phundrak’s ncmpcpp Configuration" />
|
|
|
|
|
#+HTML_HEAD_EXTRA: <meta property="og:title" content="Phundrak’s ncmpcpp Configuration" />
|
|
|
|
|
#+HTML_HEAD_EXTRA: <meta property="og:description" content="Description of the ncmpcpp configuration of Phundrak" />
|
|
|
|
|
#+PROPERTY: header-args :tangle ~/.config/ncmpcpp/config2 :exports code
|
|
|
|
|
#+STARTUP: content
|
|
|
|
|
|
|
|
|
|
* Table of Contents :TOC_4_gh:noexport:
|
|
|
|
|
:PROPERTIES:
|
2020-06-07 15:36:02 +00:00
|
|
|
|
:CUSTOM_ID: Table_of_Contents-8c590c64
|
2020-05-17 13:04:07 +00:00
|
|
|
|
:END:
|
|
|
|
|
- [[#introduction][Introduction]]
|
|
|
|
|
- [[#core-ncmpcpp-settings][Core Ncmpcpp settings]]
|
|
|
|
|
- [[#directories][Directories]]
|
|
|
|
|
- [[#mpd][MPD]]
|
|
|
|
|
|
|
|
|
|
* Introduction
|
|
|
|
|
:PROPERTIES:
|
2020-06-07 15:36:02 +00:00
|
|
|
|
:CUSTOM_ID: Introduction-3e61ecfc
|
2020-05-17 13:04:07 +00:00
|
|
|
|
:END:
|
|
|
|
|
Ncmpcpp is a TUI front-end for MPD, with an UI very similar to Ncmpc. This is
|
|
|
|
|
my main MPD front-end after my i3 shortcuts. You can find below some
|
|
|
|
|
screenshots of how my current ncmpcpp configuration looks like.
|
|
|
|
|
|
|
|
|
|
[[file:img/ncmpcpp-queue.png]]
|
|
|
|
|
|
|
|
|
|
[[file:img/ncmpcpp-directory.png]]
|
|
|
|
|
|
|
|
|
|
[[file:img/ncmpcpp-visualizer.png]]
|
|
|
|
|
|
|
|
|
|
* Core Ncmpcpp settings
|
|
|
|
|
:PROPERTIES:
|
2020-06-07 15:36:02 +00:00
|
|
|
|
:CUSTOM_ID: Core_Ncmpcpp_settings-8cacae18
|
2020-05-17 13:04:07 +00:00
|
|
|
|
:END:
|
|
|
|
|
#+BEGIN_SRC conf :exports none
|
|
|
|
|
# -*- mode: conf -*-
|
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
|
|
** Directories
|
|
|
|
|
:PROPERTIES:
|
2020-06-07 15:36:02 +00:00
|
|
|
|
:CUSTOM_ID: Core_Ncmpcpp_settings-Directories-28092c92
|
2020-05-17 13:04:07 +00:00
|
|
|
|
:END:
|
|
|
|
|
Ncmpcpp has two vital directories: the lyrics directory, and its own
|
|
|
|
|
configuration directory. The configuration for ncmpcpp is generally either in
|
|
|
|
|
~$HOME/.ncmpcpp/~ or in ~$XDG_CONFIG_HOME/ncmpcpp/~.
|
|
|
|
|
#+BEGIN_SRC conf
|
|
|
|
|
ncmpcpp_directory = ~/.config/ncmpcpp
|
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
|
|
When it comes to the lyrics, be sure to set the directory to the same
|
|
|
|
|
directory pointed at by Mpd.
|
|
|
|
|
#+BEGIN_SRC conf
|
|
|
|
|
lyrics_directory = ~/.lyrics
|
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
|
|
** MPD
|
|
|
|
|
:PROPERTIES:
|
2020-06-07 15:36:02 +00:00
|
|
|
|
:CUSTOM_ID: Core_Ncmpcpp_settings-MPD-a2a7452e
|
2020-05-17 13:04:07 +00:00
|
|
|
|
:END:
|
|
|
|
|
These settings tell ncmpcpp how to communicate with Mpd. Once again, be sure
|
|
|
|
|
to follow your own MPD settings. In my case, I am connecting to my local MPD
|
|
|
|
|
server, hence the ~localhost~ value of the variable below, and I did not
|
|
|
|
|
change the default port of MPD. My music is located at =~/Music=, and ncmpcpp
|
|
|
|
|
should connect pretty much immediately, although I allow a five seconds
|
|
|
|
|
timeout before ncmpcpp treats it as an error. Also, no crossfade please.
|
|
|
|
|
#+BEGIN_SRC conf
|
|
|
|
|
mpd_host = localhost
|
|
|
|
|
mpd_port = 6600
|
|
|
|
|
mpd_music_dir = ~/Music
|
|
|
|
|
mpd_connection_timeout = 5
|
|
|
|
|
mpd_crossfade_time = 0
|
|
|
|
|
#+END_SRC
|