- go2rtc: https://github.com/AlexxIT/go2rtc/releases
- ffmpeg: https://www.gyan.dev/ffmpeg/builds/
- srvany-ng: https://github.com/birkett/srvany-ng/releases
C:\
└───Program Files
└───go2rtc
C:\
└───Program Files
└───go2rtc
$ cd "C:\Program Files\SnowLuma"
# method A
$ mklink /d current v1.10.2
# method B
$ powershell -c "New-Item -ItemType SymbolicLink -Path current -Target v1.10.2"
$ dir| #!/bin/sh | |
| # | |
| # File: /etc/hotplug.d/button/00-custom | |
| # | |
| logger -t "Button-Event" "Button: $BUTTON | Action: $ACTION | Duration: $SEEN" | |
| if [ "$BUTTON" = "BTN_0" ] && [ "$ACTION" = "released" ] && [ "$SEEN" -gt 1 ]; then | |
| logger -t "Button-Debounce" "Valid button release processed." | |
| fi |
| $ open https://github.com/settings/developers | |
| - Client ID: xxxxxx | |
| - Client Secret: xxxxxxxxxxxx | |
| $ docker compose exec --user root node-red bash | |
| >>> npm install passport-github2 | |
| >>> vi settings.js | |
| >>> exit | |
| $ docker compose restart |
| RULE1 ON button1#state DO publish button %value% ENDON | |
| RULE2 ON mqtt#connected DO Subscribe motion, home/zigbee2mqtt/0x1234567890abcdef, occupancy ENDON ON Event#motion=true DO power 3 ENDON ON Event#motion=false DO power 4 ENDON |
| # Doc: https://wiki.archlinux.org/title/Udev | |
| # | |
| # udevadm info --attribute-walk --name=/dev/input/event2 | |
| # udevadm control --reload | |
| # udevadm trigger | |
| # | |
| KERNEL=="event[0-9]*", SUBSYSTEM=="input", SUBSYSTEMS=="input", ATTRS{id/vendor}=="2717", ATTRS{id/product}=="32b1", SYMLINK+="input/by-id/xiaomi-bt-rc", SYMLINK+="input/by-uuid/%s{uniq}" | |
| KERNEL=="event[0-9]*", SUBSYSTEM=="input", SUBSYSTEMS=="input", ATTRS{id/vendor}=="00d2", ATTRS{id/product}=="0580", SYMLINK+="input/by-id/xiaoyi-bt-rc", SYMLINK+="input/by-uuid/%s{uniq}" |
Official Docs: https://go.dev/doc/install
Open: https://go.dev/dl/
$ wget https://go.dev/dl/go1.26.1.linux-arm64.tar.gz| #!/bin/bash | |
| NAME=ss-tunnel | |
| VERSION=1.24.0 | |
| PKG_ID=org.duckdns.easypi.$NAME | |
| PKG_NAME=${NAME}_${VERSION}.pkg | |
| DOWNLOAD_URL=https://github.com/shadowsocks/shadowsocks-rust/releases/download/v${VERSION}/shadowsocks-v${VERSION}.aarch64-apple-darwin.tar.xz | |
| DOWNLOAD_DIR=./payload/usr/local/bin | |
| mkdir -p $DOWNLOAD_DIR |