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)" }