mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-23 20:12:31 +00:00
Music: Added support for Pragha
This commit is contained in:
8
neofetch
8
neofetch
@@ -1081,7 +1081,7 @@ get_memory() {
|
||||
|
||||
get_song() {
|
||||
# This is absurdly long.
|
||||
player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious|gnome-music|lollypop|clementine/ {printf $5 " " $6; exit}')"
|
||||
player="$(ps x | awk '!(/awk|Helper|Cache/) && /mpd|cmus|mocp|spotify|Google Play|iTunes.app|rhythmbox|banshee|amarok|deadbeef|audacious|gnome-music|lollypop|clementine|pragha/ {printf $5 " " $6; exit}')"
|
||||
|
||||
case "${player/*\/}" in
|
||||
"mpd"*)
|
||||
@@ -1198,6 +1198,12 @@ get_song() {
|
||||
song="${song% - }"
|
||||
;;
|
||||
|
||||
"pragha"*)
|
||||
artist="$(pragha -c | awk -F':' '/artist/ {print $2}')"
|
||||
title="$(pragha -c | awk -F':' '/title/ {print $2}')"
|
||||
song="$artist - $title"
|
||||
;;
|
||||
|
||||
*) song="Not Playing" ;;
|
||||
esac
|
||||
|
||||
|
||||
Reference in New Issue
Block a user