Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经将 Rainmeter 的一种流行时钟皮肤更改为我想要的样子。但是,唯一的问题是时钟中第 10、11 和 12 小时的“1”被当前边距的皮肤边缘切断。
我确切地知道在给定时间需要更改哪个值,所以我现在需要弄清楚的是如何运行 Lua 脚本以在时钟到达时更改它。问题是,经过大量搜索,我一点也不知道如何。这绝对看起来应该很容易实现。
您需要将lua脚本作为cron 作业运行。
lua
cron
为了实现这一点,我建议您使用cron.lua具有您想要的功能的这个模块。您可以做的一个示例如下:
cron.lua
local clock = cron.every(time, callback, ...). --Creates a clock that will execute callback every time, periodically. Additional parameters are passed to the callback too.
callback变量是您希望在每个时间间隔执行的代码。
callback