From 0258ac69a7c6610473de82e93cb4c4a2f38775b0 Mon Sep 17 00:00:00 2001 From: Marty Sluijtman Date: Tue, 17 Sep 2024 15:02:44 +0200 Subject: [PATCH] Current song mentioned in other commands as well --- src/bin/noise | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/bin/noise b/src/bin/noise index fd365b7..cd27b5e 100755 --- a/src/bin/noise +++ b/src/bin/noise @@ -13,13 +13,13 @@ def main [] { # Skips to next song def "main next" [] { mpc next - notify $"Switching to: (mpc current)" + notify $"Switching to:\n(mpc current)" } # Moves back a song in the que def "main prev" [] { mpc prev - notify $"Switching to: (mpc current)" + notify $"Switching to:\n(mpc current)" } # Shuffles the current que @@ -31,17 +31,17 @@ def "main shuffle" [] { # Stops playing the current que def "main stop" [] { mpc stop - notify $"Stopping playback..." + notify $"Stopping playback of:\n(mpc toggle)" } # Starts playing the current que def "main start" [] { mpc start - notify $"Starting playback..." + notify $"Starting playback of:\n(mpc toggle)" } # Toggles playback of the current que def "main toggle" [] { mpc toggle - notify $"Toggling playback..." + notify $"Toggling playback of:\n(mpc current)" }