mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 19:22:32 +00:00
fixed typos in calendar.attach
This commit is contained in:
parent
58cd843c1b
commit
6c2ca17421
|
@ -117,7 +117,7 @@ gray = "#9E9C9A"
|
|||
mytextclock = awful.widget.textclock(" %H:%M ")
|
||||
|
||||
-- Calendar
|
||||
lain.widgets.calendar:attach(mytextclock)
|
||||
lain.widgets.calendar.attach(mytextclock)
|
||||
|
||||
--[[ Mail IMAP check
|
||||
-- commented because it needs to be set before use
|
||||
|
|
|
@ -130,7 +130,7 @@ green = "#8FEB8F"
|
|||
mytextclock = awful.widget.textclock("<span font='Tamsyn 5'> </span>%H:%M ")
|
||||
|
||||
-- Calendar
|
||||
lain.widgets.calendar:attach(mytextclock)
|
||||
lain.widgets.calendar.attach(mytextclock)
|
||||
|
||||
--[[ Mail IMAP check
|
||||
-- commented because it needs to be set before use
|
||||
|
|
|
@ -119,7 +119,7 @@ mytextclock = awful.widget.textclock(markup(gray, " %a")
|
|||
.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M "))
|
||||
|
||||
-- Calendar
|
||||
lain.widgets.calendar:attach(mytextclock, { fg = white })
|
||||
lain.widgets.calendar.attach(mytextclock, { fg = white })
|
||||
|
||||
--[[ Mail IMAP check
|
||||
-- commented because it needs to be set before use
|
||||
|
|
|
@ -133,7 +133,7 @@ calendar_icon:set_image(beautiful.calendar)
|
|||
calendarwidget = wibox.widget.background()
|
||||
calendarwidget:set_widget(mytextcalendar)
|
||||
calendarwidget:set_bgimage(beautiful.widget_bg)
|
||||
lain.widgets.calendar:attach(calendarwidget, { fg = "#FFFFFF", position = "bottom_right" })
|
||||
lain.widgets.calendar.attach(calendarwidget, { fg = "#FFFFFF", position = "bottom_right" })
|
||||
|
||||
--[[ Mail IMAP check
|
||||
-- commented because it needs to be set before use
|
||||
|
|
|
@ -136,7 +136,7 @@ mytextclock = lain.widgets.abase({
|
|||
})
|
||||
|
||||
-- Calendar
|
||||
lain.widgets.calendar:attach(mytextclock, { font_size = 10 })
|
||||
lain.widgets.calendar.attach(mytextclock, { font_size = 10 })
|
||||
|
||||
-- Weather
|
||||
weathericon = wibox.widget.imagebox(beautiful.widget_weather)
|
||||
|
|
|
@ -130,7 +130,7 @@ mytextclock = lain.widgets.abase({
|
|||
})
|
||||
|
||||
-- calendar
|
||||
lain.widgets.calendar:attach(mytextclock, { font_size = 10 })
|
||||
lain.widgets.calendar.attach(mytextclock, { font_size = 10 })
|
||||
|
||||
-- Mail IMAP check
|
||||
mailicon = wibox.widget.imagebox(beautiful.widget_mail)
|
||||
|
|
|
@ -125,7 +125,7 @@ mytextclock = awful.widget.textclock(markup.font("Tamsyn 3", " ") ..
|
|||
markup(white, " %H:%M "))
|
||||
|
||||
-- Calendar
|
||||
lain.widgets.calendar:attach(mytextclock, { fg = beautiful.fg_focus })
|
||||
lain.widgets.calendar.attach(mytextclock, { fg = beautiful.fg_focus })
|
||||
|
||||
--[[ Mail IMAP check
|
||||
-- commented because it needs to be set before use
|
||||
|
|
|
@ -122,7 +122,7 @@ gray = "#94928F"
|
|||
mytextclock = awful.widget.textclock(" %H:%M ")
|
||||
|
||||
-- Calendar
|
||||
lain.widgets.calendar:attach(mytextclock)
|
||||
lain.widgets.calendar.attach(mytextclock)
|
||||
|
||||
-- Mail IMAP check
|
||||
mailwidget = lain.widgets.imap({
|
||||
|
|
Loading…
Reference in a new issue