summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2020-11-14 12:59:43 -0500
committerstreetturtle <streetturtle@gmail.com>2020-11-14 13:00:43 -0500
commit7dc1aeb5ac7bf2cf2553af33ac48f4956de62e79 (patch)
tree245f5dfe5d550f093f6d5527094c59cbf4a38c81
parentc9159a36b33e7f1cc9309758c2619fb046994c35 (diff)
[spotify] sync readme
-rw-r--r--spotify-widget/README.md2
-rw-r--r--spotify-widget/spotify.lua32
2 files changed, 20 insertions, 14 deletions
diff --git a/spotify-widget/README.md b/spotify-widget/README.md
index 2ae8dfc..3d18559 100644
--- a/spotify-widget/README.md
+++ b/spotify-widget/README.md
@@ -32,7 +32,7 @@ It is possible to customize widget by providing a table with all or some of the
| `dim_when_paused` | `false` | Decrease the widget opacity if spotify is paused |
| `dim_opacity` | `0.2` | Widget's opacity when dimmed, `dim_when_paused` should be set to `true` |
| `max_length` | `15` | Maximum lentgh of artist and title names. Text will be ellipsized if longer. |
-| `show_tooltip` | `true`| Show tooltip on hover with information about the playing song |
+| `show_tooltip` | `true` | Show tooltip on hover with information about the playing song |
| `timeout` | 1 | How often in seconds the widget refreshes |
diff --git a/spotify-widget/spotify.lua b/spotify-widget/spotify.lua
index abd19ef..fb903e8 100644
--- a/spotify-widget/spotify.lua
+++ b/spotify-widget/spotify.lua
@@ -34,7 +34,7 @@ local function worker(args)
local dim_when_paused = args.dim_when_paused == nil and false or args.dim_when_paused
local dim_opacity = args.dim_opacity or 0.2
local max_length = args.max_length or 15
- local show_tooltip = args.show_tooltip == nil and false or args.show_tooltip
+ local show_tooltip = args.show_tooltip == nil and true or args.show_tooltip
local timeout = args.timeout or 1
local cur_artist = ''
@@ -52,31 +52,37 @@ local function worker(args)
widget = wibox.widget.imagebox,
},
{
- id = 'titlew',
- font = font,
- widget = wibox.widget.textbox
+ layout = wibox.container.scroll.horizontal,
+ max_size = 100,
+ step_function = wibox.container.scroll.step_functions.waiting_nonlinear_back_and_forth,
+ speed = 40,
+ {
+ id = 'titlew',
+ font = font,
+ widget = wibox.widget.textbox
+ }
},
layout = wibox.layout.align.horizontal,
set_status = function(self, is_playing)
self.icon.image = (is_playing and play_icon or pause_icon)
if dim_when_paused then
- self.icon.opacity = (is_playing and 1 or dim_opacity)
+ self:get_children_by_id('icon')[1]:set_opacity(is_playing and 1 or dim_opacity)
- self.titlew:set_opacity(is_playing and 1 or dim_opacity)
- self.titlew:emit_signal('widget::redraw_needed')
+ self:get_children_by_id('titlew')[1]:set_opacity(is_playing and 1 or dim_opacity)
+ self:get_children_by_id('titlew')[1]:emit_signal('widget::redraw_needed')
- self.artistw:set_opacity(is_playing and 1 or dim_opacity)
- self.artistw:emit_signal('widget::redraw_needed')
+ self:get_children_by_id('artistw')[1]:set_opacity(is_playing and 1 or dim_opacity)
+ self:get_children_by_id('artistw')[1]:emit_signal('widget::redraw_needed')
end
end,
set_text = function(self, artist, song)
local artist_to_display = ellipsize(artist, max_length)
- if self.artistw.text ~= artist_to_display then
- self.artistw.text = artist_to_display
+ if self:get_children_by_id('artistw')[1]:get_markup() ~= artist_to_display then
+ self:get_children_by_id('artistw')[1]:set_markup(artist_to_display)
end
local title_to_display = ellipsize(song, max_length)
- if self.titlew.text ~= title_to_display then
- self.titlew.text = title_to_display
+ if self:get_children_by_id('titlew')[1]:get_markup() ~= title_to_display then
+ self:get_children_by_id('titlew')[1]:set_markup(title_to_display)
end
end
}