song: Fix matching
This commit is contained in:
parent
14981205c6
commit
130b7028ef
4
neofetch
4
neofetch
|
@ -2313,7 +2313,7 @@ get_memory() {
|
|||
}
|
||||
|
||||
get_song() {
|
||||
player="$(ps -e | grep -m 1 -o \
|
||||
player="$(ps -e | grep -m 1 \
|
||||
-e "Google Play" \
|
||||
-e "Spotify" \
|
||||
-e "amarok" \
|
||||
|
@ -2345,6 +2345,8 @@ get_song() {
|
|||
-e "yarock" \
|
||||
-e "sayonara" \
|
||||
-e "vlc")"
|
||||
player="${player/* }"
|
||||
player="${player##*/}"
|
||||
|
||||
[[ "$music_player" && "$music_player" != "auto" ]] && \
|
||||
player="$music_player"
|
||||
|
|
Reference in New Issue