.ncmpcpp to .config/ncmpcpp

This commit is contained in:
Thomas Dehaeze 2019-03-05 22:03:53 +01:00
parent 64b07dc48c
commit e8616e6c31

View File

@ -7,7 +7,7 @@ Cheatsheet: https://pkgbuild.com/~jelle/ncmpcpp/
** Config
:PROPERTIES:
:header-args:conf: :tangle ~/.ncmpcpp/config
:header-args:conf: :tangle ~/.config/ncmpcpp/config
:header-args:conf+: :comments both :mkdirp yes
:END:
@ -25,7 +25,7 @@ Cheatsheet: https://pkgbuild.com/~jelle/ncmpcpp/
## ncmpcpp.
##
#
ncmpcpp_directory = ~/.config/.ncmpcpp
ncmpcpp_directory = ~/.config/ncmpcpp
#
##
## Directory for storing downloaded lyrics. It defaults to ~/.lyrics since other
@ -560,22 +560,39 @@ mpd_music_dir = ~/Music
** Bindings
:PROPERTIES:
:header-args:conf: :tangle ~/.ncmpcpp/bindings
:header-args:conf+: :comments both :mkdirp yes
:header-args:conf: :tangle ~/.config/ncmpcpp/bindings
:header-args:conf+: :comments none :mkdirp yes
:END:
#+BEGIN_SRC conf
# =============================================================
def_key "l"
next_column
def_key "h"
previous_column
def_key "k"
scroll_up
def_key "j"
scroll_down
# =============================================================
#+END_SRC
#+begin_src conf
def_key "g"
move_home
def_key "G"
move_end
def_key "j"
scroll_down
def_key "k"
scroll_up
def_key "ctrl-u"
page_up
def_key "ctrl-d"
page_down
def_key "l"
enter_directory
def_key "h"
jump_to_parent_directory
def_key "."
show_lyrics
def_key "n"
next_found_item
def_key "N"
previous_found_item
def_key "J"
move_sort_order_down
def_key "K"
move_sort_order_up
#+end_src
* MPD
:PROPERTIES: