6 lines
151 B
Plaintext
6 lines
151 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd ~/Music
|
||
|
selected_song=$(ls | rofi -i -dmenu -p "Select a song to play")
|
||
|
notify-send "Playing ${selected_song}"
|
||
|
mplayer ${selected_song}
|