mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-25 16:18:48 +01:00
Add configuration for mpd and ncmpcpp
This commit is contained in:
parent
d79d92c0b9
commit
a9381491a3
26
dotfiles/.config/mpd/mpd.conf
Normal file
26
dotfiles/.config/mpd/mpd.conf
Normal file
@ -0,0 +1,26 @@
|
||||
##################################################################################
|
||||
#
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017 Donovan Glover
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
##################################################################################
|
||||
|
||||
music_directory "~/Music"
|
||||
|
||||
playlist_directory "~/.config/mpd/playlists"
|
||||
pid_file "~/.config/mpd/pid"
|
||||
state_file "~/.config/mpd/state"
|
||||
sticker_file "~/.config/mpd/sticker.sql"
|
153
dotfiles/.config/ncmpcpp/bindings
Normal file
153
dotfiles/.config/ncmpcpp/bindings
Normal file
@ -0,0 +1,153 @@
|
||||
##################################################################################
|
||||
#
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017 Donovan Glover
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
##################################################################################
|
||||
|
||||
# Prevent the mouse from interfering with ncmpcpp
|
||||
def_key "mouse"
|
||||
dummy
|
||||
|
||||
# Disable the arrow keys
|
||||
def_key "left"
|
||||
dummy
|
||||
def_key "down"
|
||||
dummy
|
||||
def_key "up"
|
||||
dummy
|
||||
def_key "right"
|
||||
dummy
|
||||
def_key "shift-up"
|
||||
dummy
|
||||
def_key "shift-down"
|
||||
dummy
|
||||
|
||||
# Disable other functionality we don't want
|
||||
def_key "P"
|
||||
dummy
|
||||
def_key "L"
|
||||
dummy
|
||||
def_key "+"
|
||||
dummy
|
||||
def_key "!"
|
||||
dummy
|
||||
|
||||
# Use the home row as an alternative to arrow keys
|
||||
# This also lets you use the h/l keys like ranger to
|
||||
# move through directories and other structures. It
|
||||
# also lets you use l to play songs and add tracks
|
||||
# to the current playlist.
|
||||
def_key "h"
|
||||
previous_column
|
||||
def_key "h"
|
||||
jump_to_parent_directory
|
||||
def_key "j"
|
||||
scroll_down
|
||||
def_key "k"
|
||||
scroll_up
|
||||
def_key "l"
|
||||
next_column
|
||||
def_key "l"
|
||||
enter_directory
|
||||
def_key "l"
|
||||
play_item
|
||||
|
||||
# Use the home row for selecting and moving things
|
||||
def_key "K"
|
||||
move_sort_order_up
|
||||
def_key "K"
|
||||
move_selected_items_up
|
||||
def_key "J"
|
||||
move_sort_order_down
|
||||
def_key "J"
|
||||
move_selected_items_down
|
||||
def_key "H"
|
||||
select_item
|
||||
scroll_down
|
||||
def_key "L"
|
||||
select_item
|
||||
scroll_up
|
||||
|
||||
# Easily clear the current selection
|
||||
def_key "'"
|
||||
remove_selection
|
||||
|
||||
# Easily scroll up and down, vim style
|
||||
# Using "d" and "u" directly is also supported, similar to VimFx
|
||||
def_key "ctrl-u"
|
||||
page_up
|
||||
def_key "ctrl-d"
|
||||
page_down
|
||||
def_key "u"
|
||||
page_up
|
||||
def_key "d"
|
||||
page_down
|
||||
|
||||
# Use n for next and N for previous, just like vim
|
||||
def_key "n"
|
||||
next_found_item
|
||||
def_key "N"
|
||||
previous_found_item
|
||||
|
||||
# Easily switch between the playlist and browser views
|
||||
def_key "t"
|
||||
next_screen
|
||||
|
||||
# Sane movement defaults (g = top, G = bottom)
|
||||
def_key "g"
|
||||
move_home
|
||||
def_key "G"
|
||||
move_end
|
||||
|
||||
# Use "w" and "b" to go to the next and previous tracks respectively
|
||||
def_key "w"
|
||||
next
|
||||
def_key "b"
|
||||
previous
|
||||
|
||||
# Use ";" and "," to move through the track
|
||||
def_key ";"
|
||||
seek_forward
|
||||
def_key ","
|
||||
seek_backward
|
||||
|
||||
# Use "f" to apply filters (used often)
|
||||
def_key "f"
|
||||
apply_filter
|
||||
|
||||
# Use "i" instead of insert to select items
|
||||
def_key "i"
|
||||
select_item
|
||||
|
||||
# Set x to delete since we don't use crossfade. This
|
||||
# is similar to the functionality seen in VimFx.
|
||||
def_key "x"
|
||||
delete_playlist_items
|
||||
def_key "x"
|
||||
delete_browser_items
|
||||
def_key "x"
|
||||
delete_stored_playlist
|
||||
|
||||
# Use "U" to update the music database
|
||||
def_key "U"
|
||||
update_database
|
||||
|
||||
# Add random songs to the current playlist
|
||||
def_key "m"
|
||||
add_random_items
|
||||
|
||||
# vim:ft=conf
|
38
dotfiles/.config/ncmpcpp/config
Normal file
38
dotfiles/.config/ncmpcpp/config
Normal file
@ -0,0 +1,38 @@
|
||||
##################################################################################
|
||||
#
|
||||
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
||||
# Copyright (C) 2017 Donovan Glover
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
##################################################################################
|
||||
|
||||
# Change the directory from ~/.ncmpcpp to ~/.config/ncmpcpp
|
||||
ncmpcpp_directory = "~/.config/ncmpcpp"
|
||||
|
||||
# Load music files from the ~/Music directory
|
||||
mpd_music_dir = "~/Music"
|
||||
|
||||
# Always use the "new" user interface
|
||||
user_interface = "alternative"
|
||||
|
||||
# Always center the new song when changing tracks
|
||||
autocenter_mode = "yes"
|
||||
|
||||
# Let files be physically deleted inside ncmpcpp
|
||||
# Change to "yes" if you want to physically delete songs while listing to them
|
||||
allow_for_physical_item_deletion = "no"
|
||||
|
||||
# Disable mouse support
|
||||
mouse_support = "no"
|
Loading…
Reference in New Issue
Block a user