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