.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 ** Config
:PROPERTIES: :PROPERTIES:
:header-args:conf: :tangle ~/.ncmpcpp/config :header-args:conf: :tangle ~/.config/ncmpcpp/config
:header-args:conf+: :comments both :mkdirp yes :header-args:conf+: :comments both :mkdirp yes
:END: :END:
@ -25,7 +25,7 @@ Cheatsheet: https://pkgbuild.com/~jelle/ncmpcpp/
## ncmpcpp. ## ncmpcpp.
## ##
# #
ncmpcpp_directory = ~/.config/.ncmpcpp ncmpcpp_directory = ~/.config/ncmpcpp
# #
## ##
## Directory for storing downloaded lyrics. It defaults to ~/.lyrics since other ## Directory for storing downloaded lyrics. It defaults to ~/.lyrics since other
@ -560,22 +560,39 @@ mpd_music_dir = ~/Music
** Bindings ** Bindings
:PROPERTIES: :PROPERTIES:
:header-args:conf: :tangle ~/.ncmpcpp/bindings :header-args:conf: :tangle ~/.config/ncmpcpp/bindings
:header-args:conf+: :comments both :mkdirp yes :header-args:conf+: :comments none :mkdirp yes
:END: :END:
#+BEGIN_SRC conf #+begin_src conf
# ============================================================= def_key "g"
def_key "l" move_home
next_column def_key "G"
def_key "h" move_end
previous_column def_key "j"
def_key "k" scroll_down
scroll_up def_key "k"
def_key "j" scroll_up
scroll_down def_key "ctrl-u"
# ============================================================= page_up
#+END_SRC 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 * MPD
:PROPERTIES: :PROPERTIES: