diff --git a/bin/music_player b/bin/music_player new file mode 100755 index 0000000..c7d0510 --- /dev/null +++ b/bin/music_player @@ -0,0 +1,6 @@ +#!/bin/bash + +cd ~/Music +selected_song=$(ls | rofi -i -dmenu -p "Select a song to play") +notify-send "Playing ${selected_song}" +mplayer ${selected_song} \ No newline at end of file