awesome-wm-widgets/_widgets/spotify.md

48 lines
1.6 KiB
Markdown
Raw Normal View History

2017-03-12 03:02:54 +01:00
---
layout: page
---
2017-02-02 04:15:19 +01:00
# Spotify widget
2017-06-22 15:59:18 +02:00
This widget displays currently playing song on [Spotify for Linux](https://www.spotify.com/download/linux/) client: ![screenshot](https://github.com/streetturtle/AwesomeWM/blob/master/spotify-widget/spo-wid-1.png?raw=true) and consists of two parts:
2017-06-22 15:58:50 +02:00
- 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
2017-02-02 04:15:19 +01:00
Note that widget uses the Arc icon theme, so it should be [installed](https://github.com/horst3180/arc-icon-theme#installation) first under **/usr/share/icons/Arc/** folder.
2017-06-22 15:58:50 +02:00
Also this widget uses the output of the **spotify_stat** script which could be found in the widget folder.
2017-02-02 04:15:19 +01:00
## Installation
2017-06-22 15:58:50 +02:00
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](http://pavelmakhov.com/2016/02/awesome-wm-spotify)
2017-02-02 04:15:19 +01:00
To use this widget put **spotify.lua** under **~/.config/awesome/** and add it in **rc.lua**:
2017-06-22 15:58:50 +02:00
```lua
2017-02-02 04:15:19 +01:00
require("spotify")
...
s.mytasklist, -- Middle widget
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
...
spotify_widget,
...
2017-06-22 15:58:50 +02:00
```
## Troubleshooting
_Status icon (play/pause) is not shown_:
- make **spotify_stat** script executable (by `sudo chmod +x spotify_stat`) and run it in terminal, output should be either `RUNNING` or `CORKED`;
- the **spotify_stat** script is called by **spotify.lua** so make sure that `get_spotify_status_cmd` in **spotify.lua** contains the right path to the script;
- create an issue :octocat:.