折角なんで「追随 - Show Lyrics Launcher」も追加しておきました、こんな感じです。
iTunes で曲を再生中に
1. Show Lyrics Launcher を起動
2. [初回起動時のみ] ダイアログに従い Show Lyrics を選択 [パスを記憶]
3. Show Lyrics が立ち上がり歌詞が表示される - 曲が変わると歌詞も追随
4. iTunes で再生を止めると Show Lyrics Launcher と Show Lyrics が終了
アプリだけを止める機能がないので、使い勝手は今ひとつも、それなりに使えるかなと。あとは自由に書き換えてください。
ーーーーー
あと、Quick Look ウインドウが邪魔なときはこんな感じの AppleScript で位置とサイズを変更すると良いかもです。実行はメニューバーなり、Spark なりお好みで。
try
tell application "System Events"
if not (exists process "qlmanage") then return
tell process "qlmanage"
tell window 1
if size is {790, 829} then
set position to {0, 22}
set size to {322, 221}
else
set position to {445, 90}
set size to {790, 829}
end if
get {position, size} -- 現在の位置とサイズ
end tell
end tell
end tell
on error err_msg
return err_msg
end try