monadplus / polybar-tidal

Polybar module for Tidal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

polybar-tidal

This polybar module displays the current playing song in Tidal and allows to control the tidal-hifi application through mouse clicks.

demo

Dependencies

Both available through nix-env -iA nixpkgs.tidal-hifi nixpkgs.zscroll

Setup

[module/tidal]
type = custom/script
interval = 1
exec = ~/.config/polybar/scripts/tidal.sh scroll
tail = true
format = <label>
click-left = ~/.config/polybar/scripts/tidal.sh playpause
click-right = ~/.config/polybar/scripts/tidal.sh next
click-middle = ~/.config/polybar/scripts/tidal.sh previous

Support for Xmonad

keys =
  Map.fromList
    [ ((0, XF86.xF86XK_AudioPlay), spawn "bash $HOME/dotfiles/polybar/scripts/tidal.sh playpause")
    , ((0, XF86.xF86XK_AudioNext), spawn "bash $HOME/dotfiles/polybar/scripts/tidal.sh next")
    , ((0, XF86.xF86XK_AudioPrev), spawn "bash $HOME/dotfiles/polybar/scripts/tidal.sh previous")
    ...
    ]

History

Star History Chart

About

Polybar module for Tidal

License:MIT License


Languages

Language:Shell 100.0%