在 iPhone 和 iPad 上通过快捷指令的自动化实现了充电器连接或者断开时执行自动化操作 在 macOS ( Monterey,Intel )上快捷指令里没有自动化的选项,有什么替代方案吗? 想实现开始 /结束充电时自动执行 js 脚本 敬礼
1
youdoit 2021-09-06 19:55:34 +08:00
aldente 这个软件可以实现你的愿望
|
2
nidongpinyinme OP @youdoit 不是啊老哥,我是想充电时能自动执行个脚本,不是限制充电啥的
|
3
xiaoding 2021-09-06 20:45:29 +08:00
pmset -g batt 试了一下这个命令可以获取电量,自动化里面运行 shell 脚本就可以了
|
4
nidongpinyinme OP @xiaoding 哥,我可能没说明白,是这个自动化没找到入口触发
|
5
Danswerme 2021-09-06 23:53:19 +08:00 via iPhone
macOS 12 快捷指令没有自动化??? 那就残疾了一大半啊,我还蛮期待的。
|
6
dullwit 2021-09-07 09:21:22 +08:00
可以使用 hammerspoon 工具监听
``` function batteryStatusWatcher() if (hs.battery.isCharged()) then alert.show("isCharged") end end hs.battery.watcher.new(batteryStatusWatcher):start() ``` |
7
JasonEWNL 2021-09-07 20:22:18 +08:00
可以自己写一个,脚本放用户的登录项里开机自启或者 crontab 定时安排,要执行的 JS 放下面的 start 和 stop 处就行了。
``` #!/bin/bash batt () { pmset -g batt | grep -q $1 } status () { if batt 'discharging' then echo 1 elif batt 'charged' then echo 2 elif batt 'charging' then echo 3 else echo -1 fi } last=$(status) while true do sleep 1 current=$(status) if [[ $current -eq -1 ]] then echo unknown continue fi if [[ $last -lt $current ]] then echo start # 开始充电 elif [[ $last -gt $current ]] then echo stop # 结束充电 else echo steady fi last=$current done ``` 要是不急,挨到 Monterey 安排上自动化也快(虽然官方 Universal Control 也鸽到现在)。 |
8
nidongpinyinme OP @Danswerme 不知道是不是处理器的问题
|
9
nidongpinyinme OP @dullwit 好嘞,这个软件之前看到过介绍,上手试了一下感觉学习成本有点高,让劝退了,谢谢老哥
|
10
nidongpinyinme OP @JasonEWNL 哥哥辛苦了,我先用脚本试试,虽然也不急,但是谁知道正式版里有没有自动化呢
|
11
nidongpinyinme OP @JasonEWNL 考完研了有时间接着折腾, 这个软件试着写了一个,屏幕唤醒的时候是正常的,但是合盖的时候它不触发啊。
|