This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/scripts/rofimusic

10 lines
243 B
Bash
Executable File

#!/bin/sh
music=$(mpc listall --format '%artist% : %title% ' | rofi -i -dmenu)
artist=$(echo "$music" | cut -d: -f1)
title=$(echo "$music" | cut -d: -f2)
echo title "$title" artist "$artist"
mpc searchplay title "$title"
#artist "$artist"