awesome/awesome-wm-widgets/spotify-widget
Thomas Forgione eff92f7e09
Better widgets
2018-11-28 15:31:35 +01:00
..
README.md Better widgets 2018-11-28 15:31:35 +01:00
spo-wid-1.png Better widgets 2018-11-28 15:31:35 +01:00
spotify.lua Better widgets 2018-11-28 15:31:35 +01:00

README.md

Spotify widget

This widget displays currently playing song on Spotify for Linux client: screenshot and consists of two parts:

  • status icon which shows if music is currently playing
  • artist and name of the current song playing

Controls

  • left click - play/pause
  • scroll up - play next song
  • scroll down - play previous song

Dependencies

Note that widget uses the Arc icon theme, so it should be installed first under /usr/share/icons/Arc/ folder.

Installation

First you need to have spotify CLI installed. Here is how you can do it (except widget part): pavelmakhov.com/2016/02/awesome-wm-spotify

To use this widget clone repo under ~/.config/awesome/ and then add it in rc.lua:

local spotify_widget = require("awesome-wm-widgets.spotify-widget.spotify")
...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
		...
        spotify_widget,
		...