Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View jnyilas's full-sized avatar

Joe Nyilas jnyilas

  • Detroit, MI
View GitHub Profile
@jnyilas
jnyilas / cal.lua
Last active February 19, 2023 15:27 — forked from meskarune/cal.lua
conky calendar and weather
#!/usr/bin/env lua
conky_color = "${color1}%2d${color}"
t = os.date('*t', os.time())
year, month, currentday = t.year, t.month, t.day
daystart = os.date("*t",os.time{year=year,month=month,day=01}).wday
month_name = os.date("%B")