gpmdp.lua: simple fixes to make it work in 2019 (#147)

This commit is contained in:
Fyodor Kurlyuk 2019-09-17 01:40:42 +03:00 committed by Daniel Hahler
parent 8af6aaea27
commit f7fc05f298
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
--]] --]]
local awful = require("awful") local awful = require("awful")
local naughty = require("naughty") local naughty = require("naughty")
local dpi = require("beautiful.xresources").apply_dpi
local io, next, os, string, table = io, next, os, string, table local io, next, os, string, table = io, next, os, string, table
-- Google Play Music Desktop Player widget -- Google Play Music Desktop Player widget
@ -85,7 +86,7 @@ gpmdp.widget = awful.widget.watch({"pidof", "Google Play Music Desktop Player"},
gpmdp.latest = gpm_now gpmdp.latest = gpm_now
-- customize here -- customize here
gpmdp_notification_preset.text = string.format("%s (%s) - %s", gpm_now.artist, gpm_now.album, gpm_now.title) gpmdp.notification_preset.text = string.format("%s (%s) - %s", gpm_now.artist, gpm_now.album, gpm_now.title)
widget:set_text(gpm_now.artist .. " - " .. gpm_now.title) widget:set_text(gpm_now.artist .. " - " .. gpm_now.title)
if gpm_now.playing then if gpm_now.playing then