win 有什么定时提醒的工具?

2022-02-11 10:35:03 +08:00
 cantonadong

1 、能够周期提醒,比如按 25 、30 、60 分钟 2 、小巧精简,无其他功能,不占内存 3 、Chrome 浏览器端的也行

7175 次点击
所在节点    Windows
31 条回复
andy2415
2022-02-11 13:43:06 +08:00
睡醒了写的, 应该满足小巧简陋,无其他功能,不占内存
win + alt + r 调用

```ahk
#SingleInstance force

#!r::
{
Gui, New
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Add, Text, x10 y10, 要干啥:
Gui, Add, Edit, x60 y7 w120 vwhat
Gui, Add, Text, x10 y42, 隔多久:
Gui, Add, Edit, x60 y39 w120 vwhen Number
Gui, Add, Button ,Default x10 y74 w80 gok, &OK
Gui, Add, Button , x100 y74 w80 gcancel, &CANCEL
Gui, Show
Return

GuiEscape:
Gui, Cancel
Return
}

ok(){
GuiControlGet, what
GuiControlGet, when
global msg = what

Gui, Cancel

t := when*1000*60
SetTimer, notify, %t%

Return
}

cancel(){
Gui, Cancel
}

notify:
Gui, New
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Add, Text, x10 y12, %msg%
Gui, Add, Button ,Default x10 y44 w80 gcancel, &OK
Gui, Show
```

#!r::
{
Gui, New
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Add, Text, x10 y10, 要干啥:
Gui, Add, Edit, x60 y7 w120 vwhat
Gui, Add, Text, x10 y42, 隔多久:
Gui, Add, Edit, x60 y39 w120 vwhen Number
Gui, Add, Button ,Default x10 y74 w80 gok, &OK
Gui, Add, Button , x100 y74 w80 gcancel, &CANCEL
Gui, Show
Return

GuiEscape:
Gui, Cancel
Return
}

ok(){
GuiControlGet, what
GuiControlGet, when
global msg = what

Gui, Cancel

t := when*1000*60
SetTimer, notify, %t%

Return
}

cancel(){
Gui, Cancel
}

notify:
Gui, New
Gui +AlwaysOnTop -Caption +ToolWindow
Gui, Add, Text, x10 y12, %msg%
Gui, Add, Button ,Default x10 y44 w80 gcancel, &OK
Gui, Show
```
z740713651
2022-02-11 13:46:09 +08:00
@zmqking #15 win11 还没更新到最新版本的都没有

我之前用的 https://github.com/DinoChan/OnePomodoro
感觉一般般
UMU618
2022-02-11 14:45:46 +08:00
这个开源的,您改改定时器就可以了:
https://github.com/UMU618/win10-screen-blur
james2013
2022-02-11 16:22:10 +08:00
ReliakTimer
nmap
2022-02-11 16:23:10 +08:00
滴答清单 应该是最好用的多平台提醒软件了
cantonadong
2022-02-11 19:29:36 +08:00
@UMU618 这是为我开发了一个工具吗?哈哈。谢谢。
windliang
2022-02-11 20:10:12 +08:00
可以利用 windows 的计划任务,把这个 rundll32.exe user32.dll,LockWorkStation 写成 bat 文件,然后可以周期性自动锁屏,我大学的时候这样搞过,因为其他定时提醒都是弹窗,一般都直接就关了,后来就想到用锁屏,更强制性些,哈哈

https://www.zhihu.com/question/285586045/answer/445364909
codewld
2022-02-11 20:29:49 +08:00
docx
2022-02-11 23:19:28 +08:00
滴答清单 全平台
vuevue
2022-02-12 03:19:28 +08:00
买个 Apple Watch 或任何有计时器功能的智能穿戴设备
djokor
2022-02-12 10:43:05 +08:00

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/833126

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX