5 lines
108 B
Bash
Executable file
5 lines
108 B
Bash
Executable file
#!/bin/bash
|
|
|
|
song_info=$(playerctl metadata --format ' {{artist}} - {{title}} ')
|
|
|
|
echo "$song_info"
|