Things 3 on Touch Bar - Question

Dear all,

Could you please tell me how I can combine those scripts? I want to have a list of todos of today list and tagged with "focus" shown on touch bar. With each of those applescripts i can show today's task or task with tag "focus" but I don't manage to have them both as condition
1)
tell application "Things3"
set todayToDos to to dos of list "Today"
if todayToDos is not {} then
return name of first item of todayToDos
else
return ""
end if
end tell

tell application "Things3"
set todayToDos to to dos of tag „focus“
if todayToDos is not {} then
return name of first item of todayToDos
else
return ""
end if
end tell
Thanks