Add music player selection

This commit is contained in:
David Todd 2020-03-26 16:49:33 -05:00
parent a5c0b96dea
commit e2acc10339

6
bin/music_player Executable file
View File

@ -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}