dotfiles/home/bin/music_player

8 lines
171 B
Plaintext
Raw Normal View History

2020-03-26 16:49:33 -05:00
#!/bin/bash
2021-01-11 17:02:36 -06:00
cd ~/Music || exit
selected_song=$(ls | rofi -i -dmenu -p "Select a song to play") || exit
2020-03-26 16:49:33 -05:00
notify-send "Playing ${selected_song}"
2021-01-11 17:02:36 -06:00
mplayer "${selected_song}"