Skip to content

Instantly share code, notes, and snippets.

@roman-yagodin
Created November 1, 2019 09:16
Show Gist options
  • Save roman-yagodin/4d6b3c8be8aac3a1de2c023da827560d to your computer and use it in GitHub Desktop.
Save roman-yagodin/4d6b3c8be8aac3a1de2c023da827560d to your computer and use it in GitHub Desktop.
Lua script for Simpletask to show tasks which will start or end in 1 week
days = 7
---
function onFilter(t, f, e)
local timeInFuture = os.time() + 3600*24*days
if f.due ~= nil and f.due <= timeInFuture then
return true
end
if f.threshold ~= nil and f.threshold <= timeInFuture then
return true
end
return false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment