Spotifyで再生中の曲をtmuxのステータスバーに表示する
はじめに
macOS版のSpotifyアプリがAppleScript APIを持っていることを知ったので、試しにtmuxのステータスバーに再生中のトラック情報を表示するようにしてみました。
試した環境
- macOS Sierra 10.12.6
- AppleScript 2.5
- Spotify 1.0.63.617
- tmux 2.5
手順
- 任意のパスに以下のスクリプトファイルを配置します。今回は
~/bin/get-currently-playing-track-on-spotify
としました。実行権限もつけておいてください。
~/bin/get-currently-playing-track-on-spotify
#!/usr/bin/osascript
if application "Spotify" is running
tell application "Spotify"
if (player state as string) is "playing" then
set nowPlaying to "♫ "
else
set nowPlaying to ""
end if
set currentArtist to artist of current track as string
set currentTrack to name of current track as string
return nowPlaying & currentArtist & " - " & currentTrack
end tell
else
"Spotify is not running."
end if
- .tmux.confのstatus-rightに追加します。
~/tmux.conf(抜粋)
set -g status-right ' #(~/bin/get-currently-playing-track-on-spotify) ...'
※参考までに私のtmux.confです。
osx-provisioner/.tmux.conf at master · j-un/osx-provisioner
- tmuxをリロードします。
結果
補足と雑記
詳細なリファレンスは、スクリプトエディタで以下の方法で参照できます。
スクリプトエディタ - ファイル - 用語説明を開く - Spotify
このままだと曲名が長い時にステータスバーが見切れちゃうので、ある程度の文字数を超えたら切り捨てたりしたほうがいいかもしれません。
参考文献
Author And Source
この問題について(Spotifyで再生中の曲をtmuxのステータスバーに表示する), 我々は、より多くの情報をここで見つけました https://qiita.com/j-un/items/cf544b3e131772f5f197著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .