1

Home: Disable mpd replaygain + disable yazi trash folder

This commit is contained in:
2025-07-06 03:07:28 +02:00
parent a135d42f12
commit 02e8932376

View File

@ -49,7 +49,7 @@ rec {
enable = true; # You can't disable this enable = true; # You can't disable this
lightScheme = "catppuccin-latte"; lightScheme = "catppuccin-latte";
darkScheme = "catppuccin-mocha"; darkScheme = "catppuccin-mocha";
font = "JetBrainsMono Nerd Font Mono"; font = "JetBrainsMono Nerd Font Mono"; # NOTE: Match with fontconfig monospace default font
}; };
docs.enable = true; docs.enable = true;
@ -511,11 +511,12 @@ rec {
}; };
lyrics = { lyrics = {
auto = "yes";
synced = "yes"; # prefer synced lyrics if provided synced = "yes"; # prefer synced lyrics if provided
}; };
replaygain = { replaygain = {
auto = "yes"; # analyze on import automatically auto = "no"; # analyze on import automatically
backend = "ffmpeg"; backend = "ffmpeg";
overwrite = true; # re-analyze files with existing replaygain tags on import overwrite = true; # re-analyze files with existing replaygain tags on import
}; };
@ -981,6 +982,11 @@ rec {
run = "plugin smart-paste"; run = "plugin smart-paste";
desc = "Paste into hovered directory or CWD"; desc = "Paste into hovered directory or CWD";
} }
{
on = "d";
run = "remove --permanently";
desc = "Delete selection";
}
]; ];
}; };
}; };
@ -1013,18 +1019,19 @@ rec {
# Don't start playback after startup # Don't start playback after startup
restore_paused "yes" restore_paused "yes"
# Use track tags on shuffle and album tags on album play # Use track tags on shuffle and album tags on album play (auto)
replaygain "auto" # Use album's tags (album)
# Use track's tags (track)
# replaygain "auto"
# PipeWire main output # PipeWire main output
audio_output { audio_output {
type "pipewire" type "pipewire"
name "PipeWire Sound Server" name "PipeWire Sound Server"
mixer_type "hardware"
# Use hardware mixer instead of software volume filter (replaygain_handler "software") # Use hardware mixer instead of software volume filter (replaygain_handler "software")
replay_gain_handler "mixer" # mixer_type "hardware"
# replay_gain_handler "mixer"
} }
# FiFo output for cava visualization # FiFo output for cava visualization