2017-01-23 17:01:16 +01:00
|
|
|
local awful = require("awful")
|
2017-10-11 20:22:51 +02:00
|
|
|
local wibox = require("wibox")
|
2017-01-26 04:47:50 +01:00
|
|
|
local watch = require("awful.widget.watch")
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-12-02 19:50:14 +01:00
|
|
|
-- local GET_SPOTIFY_STATUS_CMD = os.getenv("HOME") .. '/.config/awesome/awesome-wm-widgets/spotify-widget/spotify_stat'
|
|
|
|
local GET_SPOTIFY_STATUS_CMD = 'sp status'
|
2017-10-11 20:22:51 +02:00
|
|
|
local GET_CURRENT_SONG_CMD = 'sp current-oneline'
|
|
|
|
local PATH_TO_ICONS = "/usr/share/icons/Arc"
|
2017-01-23 17:01:16 +01:00
|
|
|
|
2017-06-17 18:48:03 +02:00
|
|
|
spotify_widget = wibox.widget {
|
|
|
|
{
|
|
|
|
id = "icon",
|
|
|
|
widget = wibox.widget.imagebox,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id = 'current_song',
|
|
|
|
widget = wibox.widget.textbox,
|
|
|
|
font = 'Play 9'
|
|
|
|
},
|
|
|
|
layout = wibox.layout.align.horizontal,
|
|
|
|
set_image = function(self, path)
|
|
|
|
self.icon.image = path
|
|
|
|
end,
|
|
|
|
set_text = function(self, path)
|
|
|
|
self.current_song.text = path
|
2017-06-05 22:56:06 +02:00
|
|
|
end,
|
2017-06-17 18:48:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local update_widget_icon = function(widget, stdout, _, _, _)
|
|
|
|
stdout = string.gsub(stdout, "\n", "")
|
2017-12-02 19:50:14 +01:00
|
|
|
if (stdout == 'Playing') then
|
2017-10-11 20:22:51 +02:00
|
|
|
widget:set_image(PATH_TO_ICONS .. "/actions/24/player_play.png")
|
2017-12-02 19:50:14 +01:00
|
|
|
elseif (stdout == "Paused") then
|
2017-10-11 20:22:51 +02:00
|
|
|
widget:set_image(PATH_TO_ICONS .. "/actions/24/player_pause.png")
|
2017-06-17 18:48:03 +02:00
|
|
|
else
|
|
|
|
widget:set_image(nil)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local update_widget_text = function(widget, stdout, _, _, _)
|
|
|
|
if string.find(stdout, 'Error: Spotify is not running.') ~= nil then
|
|
|
|
widget:set_text('')
|
|
|
|
widget:set_visible(false)
|
|
|
|
else
|
|
|
|
widget:set_text(stdout)
|
|
|
|
widget:set_visible(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-11 20:22:51 +02:00
|
|
|
watch(GET_SPOTIFY_STATUS_CMD, 1, update_widget_icon, spotify_widget)
|
|
|
|
watch(GET_CURRENT_SONG_CMD, 1, update_widget_text, spotify_widget)
|
2017-06-04 02:43:03 +02:00
|
|
|
|
2017-06-09 17:33:37 +02:00
|
|
|
--[[
|
|
|
|
-- Adds mouse control to the widget:
|
|
|
|
-- - left click - play/pause
|
|
|
|
-- - scroll up - play next song
|
|
|
|
-- - scroll down - play previous song ]]
|
2017-06-17 18:48:03 +02:00
|
|
|
spotify_widget:connect_signal("button::press", function(_, _, _, button)
|
|
|
|
if (button == 1) then awful.spawn("sp play", false) -- left click
|
|
|
|
elseif (button == 4) then awful.spawn("sp next", false) -- scroll up
|
|
|
|
elseif (button == 5) then awful.spawn("sp prev", false) -- scroll down
|
2017-06-09 17:33:37 +02:00
|
|
|
end
|
2017-10-11 20:22:51 +02:00
|
|
|
awful.spawn.easy_async(GET_SPOTIFY_STATUS_CMD, function(stdout, stderr, exitreason, exitcode)
|
2017-06-17 18:48:03 +02:00
|
|
|
update_widget_icon(spotify_widget, stdout, stderr, exitreason, exitcode)
|
|
|
|
end)
|
2017-06-05 22:56:06 +02:00
|
|
|
end)
|