ncmpcpp rice and stuff

This commit is contained in:
kat witch 2021-03-11 04:53:14 +00:00
parent c548add318
commit 7d899adde6
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
6 changed files with 61 additions and 16 deletions

View file

@ -5,6 +5,36 @@
programs.ncmpcpp = {
enable = true;
mpdMusicDir = "/home/kat/music";
settings = {
visualizer_data_source = "/tmp/mpd.fifo";
visualizer_output_name = "my_fifo";
visualizer_in_stereo = "yes";
visualizer_type = "spectrum";
visualizer_look = "+|";
user_interface = "alternative";
colors_enabled = "yes";
discard_colors_if_item_is_selected = "no";
header_window_color = "250";
volume_color = "250";
state_line_color = "cyan";
state_flags_color = "cyan";
statusbar_color = "yellow";
progressbar_color = "black";
progressbar_elapsed_color = "blue";
playlist_display_mode = "classic";
song_columns_list_format =
"(3f)[cyan]{n} (40)[default]{t|f} (25)[red]{a} (30)[blue]{b} (4f)[cyan]{l}";
now_playing_prefix = "$b";
song_list_format =
"$1$9%l$1$9 $8¦$9 $6%a$9 $8¦$9 $5%b$9 $R$1$9%t$1$9 $8¦$9 $7%n$9";
song_library_format = "{%n > }{%t}|{%f}";
song_status_format = "{%a - }{%t - }{%b}";
titles_visibility = "no";
header_visibility = "no";
statusbar_visibility = "no";
now_playing_suffix = "$8$/b";
progressbar_look = " ";
};
};
programs.beets = {
enable = true;
@ -26,9 +56,16 @@
musicDirectory = "/home/kat/music";
extraConfig = ''
audio_output {
type "pulse"
name "speaker"
type "fifo"
name "my_fifo"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
audio_output {
type "pulse"
name "speaker"
}
'';
};
};

View file

@ -22,6 +22,7 @@
v4l-utils
transmission-gtk
lm_sensors
p7zip
baresip
psmisc
discord
@ -40,7 +41,7 @@
gimp-with-plugins
vscode
cryptsetup
pcmanfm
vifm
neofetch
htop
];

View file

@ -22,7 +22,7 @@
}
];
extraPackages = with pkgs;
[ (python3.withPackages (ps: with ps; [ black flake8])) ];
[ (python3.withPackages (ps: with ps; [ black flake8 ])) ];
extraPython3Packages = (ps: with ps; [ jedi pylint ]);
extraConfig = import ./vimrc.nix { inherit pkgs; };
};