mirror of https://github.com/lcpz/lain.git
#25 fix attempt
This commit is contained in:
parent
6b91332a38
commit
96df4b8790
|
@ -35,7 +35,7 @@ function net.get_device()
|
|||
if ws ~= nil then
|
||||
return ws:gsub(": UP", "")
|
||||
else
|
||||
return ""
|
||||
return "network off"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -80,10 +80,8 @@ local function worker(args)
|
|||
then
|
||||
if helpers.get_map(iface)
|
||||
then
|
||||
n_title = iface
|
||||
if n_title == "" then n_title = "network" end
|
||||
naughty.notify({
|
||||
title = n_title,
|
||||
title = iface,
|
||||
text = "no carrier",
|
||||
timeout = 7,
|
||||
position = "top_left",
|
||||
|
|
|
@ -58,12 +58,12 @@ local function fetch_weather()
|
|||
yawn.icon:set_image(icon_path .. "na.png")
|
||||
if text == "" then
|
||||
weather_data = "Service not available at the moment."
|
||||
yawn.widget:set_text(" N/A")
|
||||
yawn.widget:set_text(" N/A ")
|
||||
else
|
||||
weather_data = "City not found!\n" ..
|
||||
"Are you sure " .. city_id ..
|
||||
" is your Yahoo city ID?"
|
||||
yawn.widget:set_text(" ?")
|
||||
yawn.widget:set_text(" ? ")
|
||||
end
|
||||
return
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue