static bling and rubato

This commit is contained in:
Chris Cochrun 2022-05-17 11:12:22 -05:00
parent 168920f078
commit 61a89f8dca
90 changed files with 10201 additions and 24 deletions

14
awesome/rubato/init.lua Normal file
View file

@ -0,0 +1,14 @@
RUBATO_DEF_RATE = 30
RUBATO_OVERRIDE_DT = true
RUBATO_DIR = (...):match("(.-)[^%.]+$").."rubato."
return {
--Overarching functions to set defaults
set_def_rate = function(rate) RUBATO_DEF_RATE = rate end,
set_override_dt = function(value) RUBATO_OVERRIDE_DT = value end,
--Modules
timed = require(RUBATO_DIR.."timed"),
easing = require(RUBATO_DIR.."easing"),
subscribable = require(RUBATO_DIR.."subscribable"),
}