Created
November 1, 2019 09:16
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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