diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-11 00:57:29 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-11 00:57:29 +0200 |
commit | 77ad000e319aefc22b528bcfd5ef7fc11ae0eb60 (patch) | |
tree | f8b49fdebb124b4d5b039986a2d814c035cf3bf9 /modules/home/conf/beets/default.nix | |
parent | feat(home/beets): Normalize artist when importing (diff) | |
download | nixos-config-77ad000e319aefc22b528bcfd5ef7fc11ae0eb60.tar.gz nixos-config-77ad000e319aefc22b528bcfd5ef7fc11ae0eb60.zip |
fix(home/beets): Don't actually run the replaygain command but notify
This facilitates importing many things and then running the command afterwards.
Diffstat (limited to 'modules/home/conf/beets/default.nix')
-rw-r--r-- | modules/home/conf/beets/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index 03f58c45..7cb2b257 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -68,7 +68,7 @@ # Also generate the replaygain for the album variant (so selecting between # track and album becomes possible) event = "import"; - command = "beet replaygain --album"; + command = "echo Remember to run 'beet replaygain --album' to generate the album replaygain values for the imported songs!"; } ]; }; |