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