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