Change indentation of all blocks.
Use (setq org-src-preserve-indentation t) for Emacs.
This commit is contained in:
238
music.org
238
music.org
@@ -9,14 +9,14 @@
|
||||
:END:
|
||||
|
||||
#+BEGIN_SRC conf
|
||||
[window]
|
||||
width=500
|
||||
height=400
|
||||
sinkInputType=1
|
||||
sourceOutputType=1
|
||||
sinkType=0
|
||||
sourceType=1
|
||||
showVolumeMeters=1
|
||||
[window]
|
||||
width=500
|
||||
height=400
|
||||
sinkInputType=1
|
||||
sourceOutputType=1
|
||||
sinkType=0
|
||||
sourceType=1
|
||||
showVolumeMeters=1
|
||||
#+END_SRC
|
||||
|
||||
* =mopidy= - Music Server
|
||||
@@ -27,47 +27,47 @@
|
||||
:END:
|
||||
|
||||
#+begin_src conf
|
||||
[spotify]
|
||||
username = dehaeze.thomas@gmail.com
|
||||
password = <<get-password(passname="spotify.com/dehaeze.thomas@gmail.com")>>
|
||||
client_id = 9dd02534-f038-46d8-946e-bfe72498204e
|
||||
client_secret = <<get-password(passname="spotify/client_secret")>>
|
||||
bitrate = 320
|
||||
[spotify]
|
||||
username = dehaeze.thomas@gmail.com
|
||||
password = <<get-password(passname="spotify.com/dehaeze.thomas@gmail.com")>>
|
||||
client_id = 9dd02534-f038-46d8-946e-bfe72498204e
|
||||
client_secret = <<get-password(passname="spotify/client_secret")>>
|
||||
bitrate = 320
|
||||
|
||||
[mpd]
|
||||
enabled = true
|
||||
hostname = 127.0.0.1
|
||||
port = 6600
|
||||
password =
|
||||
max_connections = 20
|
||||
connection_timeout = 60
|
||||
zeroconf = Mopidy MPD server on $hostname
|
||||
command_blacklist = listall,listallinfo
|
||||
default_playlist_scheme = m3u
|
||||
[mpd]
|
||||
enabled = true
|
||||
hostname = 127.0.0.1
|
||||
port = 6600
|
||||
password =
|
||||
max_connections = 20
|
||||
connection_timeout = 60
|
||||
zeroconf = Mopidy MPD server on $hostname
|
||||
command_blacklist = listall,listallinfo
|
||||
default_playlist_scheme = m3u
|
||||
|
||||
[jellyfin]
|
||||
hostname = https://jellyfin.tdehaeze.xyz/
|
||||
username = tdehaeze
|
||||
password = <<get-password(passname="music.tdehaeze.xyz/tdehaeze")>>
|
||||
libraries = Music
|
||||
albumartistsort = True
|
||||
album_format = {ProductionYear} - {Name}
|
||||
[jellyfin]
|
||||
hostname = https://jellyfin.tdehaeze.xyz/
|
||||
username = tdehaeze
|
||||
password = <<get-password(passname="music.tdehaeze.xyz/tdehaeze")>>
|
||||
libraries = Music
|
||||
albumartistsort = True
|
||||
album_format = {ProductionYear} - {Name}
|
||||
|
||||
[file]
|
||||
enabled = true
|
||||
media_dirs = /home/thomas/Music
|
||||
excluded_file_extensions =
|
||||
.db
|
||||
.directory
|
||||
.html
|
||||
.jpeg
|
||||
.jpg
|
||||
.log
|
||||
.nfo
|
||||
.pdf
|
||||
.png
|
||||
.txt
|
||||
.zip
|
||||
[file]
|
||||
enabled = true
|
||||
media_dirs = /home/thomas/Music
|
||||
excluded_file_extensions =
|
||||
.db
|
||||
.directory
|
||||
.html
|
||||
.jpeg
|
||||
.jpg
|
||||
.log
|
||||
.nfo
|
||||
.pdf
|
||||
.png
|
||||
.txt
|
||||
.zip
|
||||
#+end_src
|
||||
|
||||
* =ncmpcpp= - Ncurses based MPD client
|
||||
@@ -86,38 +86,38 @@ Cheatsheet: https://pkgbuild.com/~jelle/ncmpcpp/
|
||||
|
||||
Configuration directory.
|
||||
#+begin_src conf
|
||||
ncmpcpp_directory = ~/.config/ncmpcpp
|
||||
ncmpcpp_directory = ~/.config/ncmpcpp
|
||||
#+end_src
|
||||
|
||||
MPD Configuration.
|
||||
#+begin_src conf
|
||||
mpd_host = localhost
|
||||
mpd_port = 6600
|
||||
mpd_music_dir = ~/Music
|
||||
mpd_host = localhost
|
||||
mpd_port = 6600
|
||||
mpd_music_dir = ~/Music
|
||||
#+end_src
|
||||
|
||||
Notification of song change.
|
||||
#+begin_src conf
|
||||
execute_on_song_change = dunstify --replace=19845 "Now Playing ♫" "$(mpc current)"
|
||||
execute_on_song_change = dunstify --replace=19845 "Now Playing ♫" "$(mpc current)"
|
||||
#+end_src
|
||||
|
||||
Better user interface
|
||||
#+begin_src conf
|
||||
user_interface = "alternative"
|
||||
playlist_editor_display_mode = "columns"
|
||||
search_engine_display_mode = "columns"
|
||||
browser_display_mode = "columns"
|
||||
playlist_display_mode = "columns"
|
||||
user_interface = "alternative"
|
||||
playlist_editor_display_mode = "columns"
|
||||
search_engine_display_mode = "columns"
|
||||
browser_display_mode = "columns"
|
||||
playlist_display_mode = "columns"
|
||||
#+end_src
|
||||
|
||||
Sorting by tracking number and then title
|
||||
#+begin_src conf
|
||||
browser_sort_mode = "format"
|
||||
browser_sort_format = '{%n - %t}|{%t}'
|
||||
browser_sort_mode = "format"
|
||||
browser_sort_format = '{%n - %t}|{%t}'
|
||||
#+end_src
|
||||
|
||||
#+begin_src conf
|
||||
ask_before_clearing_playlists = "no"
|
||||
ask_before_clearing_playlists = "no"
|
||||
#+end_src
|
||||
|
||||
** Bindings
|
||||
@@ -126,43 +126,43 @@ Sorting by tracking number and then title
|
||||
:header-args:conf+: :comments none :mkdirp yes
|
||||
:END:
|
||||
|
||||
#+begin_src conf
|
||||
def_key "q"
|
||||
run_external_command "sh -c 'if [ $TMUX ] ; then tmux detach; fi'"
|
||||
def_key "Q"
|
||||
quit
|
||||
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
|
||||
def_key "d"
|
||||
delete_playlist_items
|
||||
def_key "+"
|
||||
volume_up
|
||||
def_key "-"
|
||||
volume_down
|
||||
#+begin_src conf
|
||||
def_key "q"
|
||||
run_external_command "sh -c 'if [ $TMUX ] ; then tmux detach; fi'"
|
||||
def_key "Q"
|
||||
quit
|
||||
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
|
||||
def_key "d"
|
||||
delete_playlist_items
|
||||
def_key "+"
|
||||
volume_up
|
||||
def_key "-"
|
||||
volume_down
|
||||
|
||||
#+end_src
|
||||
|
||||
@@ -175,14 +175,14 @@ Sorting by tracking number and then title
|
||||
http://beets.io/
|
||||
|
||||
#+begin_src conf
|
||||
directory: ~/Music
|
||||
library: ~/Music/musiclibrary.db
|
||||
art_filename: cover
|
||||
directory: ~/Music
|
||||
library: ~/Music/musiclibrary.db
|
||||
art_filename: cover
|
||||
|
||||
import:
|
||||
move: yes
|
||||
import:
|
||||
move: yes
|
||||
|
||||
plugins: fromfilename discogs
|
||||
plugins: fromfilename discogs
|
||||
#+end_src
|
||||
|
||||
* =curseradio= - Radio with curseradio
|
||||
@@ -193,24 +193,24 @@ http://beets.io/
|
||||
:END:
|
||||
|
||||
#+begin_src conf
|
||||
[opml]
|
||||
root = http://opml.radiotime.com/
|
||||
[opml]
|
||||
root = http://opml.radiotime.com/
|
||||
|
||||
[playback]
|
||||
command = /usr/bin/mpv
|
||||
[playback]
|
||||
command = /usr/bin/mpv
|
||||
|
||||
[interface]
|
||||
keymap = vi
|
||||
[interface]
|
||||
keymap = vi
|
||||
|
||||
[keymap.vi]
|
||||
up = k
|
||||
down = j
|
||||
start = 0
|
||||
end = $
|
||||
pageup = u
|
||||
pagedown = d
|
||||
enter = l
|
||||
stop = p
|
||||
exit = q
|
||||
favourite = f
|
||||
[keymap.vi]
|
||||
up = k
|
||||
down = j
|
||||
start = 0
|
||||
end = $
|
||||
pageup = u
|
||||
pagedown = d
|
||||
enter = l
|
||||
stop = p
|
||||
exit = q
|
||||
favourite = f
|
||||
#+end_src
|
||||
|
||||
Reference in New Issue
Block a user