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