diff options
author | otg <otg@sateoki.xyz> | 2022-03-11 14:22:03 +0000 |
---|---|---|
committer | otg <otg@sateoki.xyz> | 2022-03-11 14:22:03 +0000 |
commit | 23f50f2cc73db7b534a413b2303c2fca98b19218 (patch) | |
tree | fd005915ed48f9715ab1b07b194497bc70ca4838 | |
parent | 2c56545e172aeaa896c91b459392e0fb2c2af29b (diff) | |
parent | 82c37e68b5aaf5f356981e959499c9cb6260d455 (diff) |
Merge branch 'master' of git.sateoki.xyz:self/dotfiles
-rwxr-xr-x | mpd.conf | 7 | ||||
-rwxr-xr-x | ncmpcpp-config | 7 | ||||
-rw-r--r-- | zsh/.zshrc | 4 |
3 files changed, 10 insertions, 8 deletions
@@ -10,14 +10,15 @@ # be disabled and audio files will only be accepted over ipc socket (using # file:// protocol) or streaming files over an accepted protocol. # -music_directory "/var/mpd/music" +music_directory "/var/lib/mpd/music" # # This setting sets the MPD internal playlist directory. The purpose of this # directory is storage for playlists created by MPD. The server will use # playlist files not created by the server but only if they are in the MPD # format. This setting defaults to playlist saving being disabled. # -playlist_directory "/var/mpd/playlists" +playlist_directory "/var/lib/mpd/playlists" + # # This setting sets the location of the MPD database. This file is used to @@ -26,7 +27,7 @@ playlist_directory "/var/mpd/playlists" # MPD to accept files over ipc socket (using file:// protocol) or streaming # files over an accepted protocol. # -db_file "/var/mpd/database" +db_file "/var/lib/mpd/database" # These settings are the locations for the daemon log files for the daemon. # diff --git a/ncmpcpp-config b/ncmpcpp-config index f9bf8f5..9174d2c 100755 --- a/ncmpcpp-config +++ b/ncmpcpp-config @@ -19,7 +19,7 @@ ## MPD clients (eg. ncmpc) also use that location. ## # -lyrics_directory = ~/.config/ncmpcpp/lyrics # Maybe update this to /var/ncmpcpp/lyrics? +lyrics_directory = ~/.config/ncmpcpp/lyrics # ##### connection settings ##### # @@ -33,7 +33,7 @@ mpd_port = 6600 # ## Needed for tag editor and file operations to work. ## -mpd_music_dir = /var/mpd/music +mpd_music_dir = /var/lib/mpd/music # #mpd_crossfade_time = 5 # @@ -407,7 +407,8 @@ mpd_music_dir = /var/mpd/music # #cyclic_scrolling = no # -#lyrics_fetchers = azlyrics, genius, musixmatch, sing365, metrolyrics, justsomelyrics, jahlyrics, plyrics, tekstowo, zeneszoveg, internet +# Removed genius as it always plays me up +lyrics_fetchers = azlyrics, musixmatch, sing365, metrolyrics, justsomelyrics, jahlyrics, plyrics, tekstowo, zeneszoveg, internet # #follow_now_playing_lyrics = no # @@ -63,8 +63,8 @@ alias sudo="sudo " # ls / exa alias ls='ls -a --color=always' -alias e="exa -a --header --long --git --time-style=long-iso" -alias ev="exa --header --long --git --time-style=long-iso" # Exa View +alias e="exa -a --header --long --git --time-style=long-iso --group" +alias ev="exa --header --long --git --time-style=long-iso --group" # Exa View alias c="clear ; e" alias cv="clear ; ev" # Clear + Exa View alias t="e --tree" |