1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00

blackburn: new isospacing fixes

This commit is contained in:
luke bonham 2013-04-28 11:25:03 +02:00
parent 8a6dcd266f
commit eb9f11bf67
2 changed files with 10 additions and 6 deletions

View file

@ -301,12 +301,14 @@ mytextclock:buttons(util.table.join( awful.button({ }, 1, function() add_calenda
mygmail = wibox.widget.textbox() mygmail = wibox.widget.textbox()
gmail_t = awful.tooltip({ objects = { mygmail },}) gmail_t = awful.tooltip({ objects = { mygmail },})
notify_shown = false notify_shown = false
mailcount = 0
vicious.register(mygmail, vicious.widgets.gmail, vicious.register(mygmail, vicious.widgets.gmail,
function (widget, args) function (widget, args)
gmail_t:set_text(args["{subject}"]) gmail_t:set_text(args["{subject}"])
gmail_t:add_to_object(mygmail) gmail_t:add_to_object(mygmail)
notify_title = "" notify_title = ""
notify_text = "" notify_text = ""
mailcount = args["{count}"]
if (args["{count}"] > 0 ) then if (args["{count}"] > 0 ) then
if (notify_shown == false) then if (notify_shown == false) then
-- Italian localization -- Italian localization
@ -341,7 +343,7 @@ vicious.register(mygmail, vicious.widgets.gmail,
notify_shown = true notify_shown = true
end end
if yawn.icon == yawn.sky_na then return gray .. " Mail " .. coldef .. white .. args["{count}"] .. coldef if yawn.icon == yawn.sky_na then return gray .. " Mail " .. coldef .. white .. args["{count}"] .. coldef
else return gray .. " Mail " .. coldef .. white .. args["{count}"] .. " " .. coldef else return gray .. " Mail " .. coldef .. white .. args["{count}"] .. "<span font='Tamsyn 5'> </span>" .. coldef
end end
else else
notify_shown = false notify_shown = false
@ -356,8 +358,8 @@ mpdwidget:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.u
curr_track = nil curr_track = nil
vicious.register(mpdwidget, vicious.widgets.mpd, vicious.register(mpdwidget, vicious.widgets.mpd,
function(widget, args) function(widget, args)
if (args["{state}"] == "Play") then if args["{state}"] == "Play" then
if( args["{Title}"] ~= curr_track ) if args["{Title}"] ~= curr_track
then then
curr_track = args["{Title}"] curr_track = args["{Title}"]
os.execute(scriptdir .. "mpdinfo") os.execute(scriptdir .. "mpdinfo")
@ -371,10 +373,12 @@ function(widget, args)
}).id }).id
end end
if yawn.icon == yawn.sky_na then return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. coldef if yawn.icon == yawn.sky_na then return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. coldef
elseif mailcount == 0 then return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. "<span font='Tamsyn 5'> </span>" .. coldef
else return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. " " .. coldef else return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. " " .. coldef
end end
elseif (args["{state}"] == "Pause") then elseif args["{state}"] == "Pause" then
if yawn.icon == yawn.sky_na then return gray .. "mpd " .. coldef .. white .. "in pausa" .. coldef if yawn.icon == yawn.sky_na then return gray .. "mpd " .. coldef .. white .. "in pausa" .. coldef
elseif mailcount == 0 then return gray .. "mpd " .. coldef .. white .. "in pausa<span font='Tamsun 5'> </span>" .. coldef
else return gray .. "mpd " .. coldef .. white .. "in pausa " .. coldef else return gray .. "mpd " .. coldef .. white .. "in pausa " .. coldef
end end
else else

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 B

After

Width:  |  Height:  |  Size: 166 B