-
If so could you paste the configs that make it work? my .tmux-powerlinerc
my default.sh
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey, as you mention Rhytmbox I would assume you are on a Linux-based desktop? I'm right now on a macOS desktop and Spotify works with the now playing segment. It's hard to say what the issue might be on your particular system. Thus I would advice you to follow the Debugging instructions at https://github.com/erikw/tmux-powerline#debugging By injecting For example, if you're using the "spotify" segment, then adjust the __np_spotify() {
set -x
exec 2>/tmp/tmux-powerline.log
[....]
set +x
} and then |
Beta Was this translation helpful? Give feedback.
-
Thanks for the debugging instructions, this helped with debugging the weather.sh i'm currently figuring out. |
Beta Was this translation helpful? Give feedback.
Hey, as you mention Rhytmbox I would assume you are on a Linux-based desktop?
I'm right now on a macOS desktop and Spotify works with the now playing segment. It's hard to say what the issue might be on your particular system. Thus I would advice you to follow the Debugging instructions at
https://github.com/erikw/tmux-powerline#debugging
By injecting
set -x
in the segment, you can get exact output on what is happening and which part of the script that is not working.For example, if you're using the "spotify" segment, then adjust the
np_spotify()
function innow_playing.sh
like this:and …