[2026-05-25] wiki curation, multi-agent patterns, psychologist app, xgimi setup, arr-stack updates

This commit is contained in:
Alexey Martemyanov
2026-05-25 03:01:57 +06:00
parent 66997d45c5
commit e12d46483c
10 changed files with 443 additions and 10 deletions
+3 -1
View File
@@ -5,7 +5,9 @@ updated: '2026-05-23'
type: tech
namespace: family
tags: [arr, radarr, sonarr, prowlarr, transmission, jellyfin, infra, kraken]
related: "[[jellyfin-config]]"
related:
- "[[tech/jellyfin-config]]"
- "[[tech/arr-stack-taiga]]"
---
# Arr Stack — Kraken
+2 -1
View File
@@ -5,7 +5,8 @@ updated: '2026-05-23'
type: tech
namespace: family
tags: [arr, taiga, infra, media, pitfalls]
related: "[[arr-stack-kraken]]"
related:
- "[[tech/arr-stack-kraken]]"
---
# Arr Stack — Taiga
+14 -3
View File
@@ -1,8 +1,14 @@
---
title: VPS qentra.top
type: infra
tags: [vps, nginx, cloudflare, python]
related: "[[kraken-network]]"
created: '2026-05-24'
updated: '2026-05-25'
type: tech
namespace: personal
tags: [infra, vps]
confidence: medium
related:
- "[[tech/kraken-network]]"
- "[[tech/wireguard-vpn]]"
---
# VPS qentra.top
@@ -15,3 +21,8 @@ related: "[[kraken-network]]"
1. Add Cloudflare A-record → 91.207.28.205
2. Add nginx vhost in `/etc/nginx/sites-enabled/`
## See Also
- [[tech/kraken-network]] — Kraken home network topology
- [[tech/wireguard-vpn]] — WireGuard tunnel used for Eagle↔VPS traffic
+121
View File
@@ -0,0 +1,121 @@
---
title: XGIMI Play 6 — Setup Guide
created: '2026-05-25'
updated: '2026-05-25'
type: tech
namespace: family
tags: [infra, htpc, how-to]
sources:
- family/how-to/xgimi-play6-setup.md
confidence: medium
related:
- "[[tech/htpc-kodi-layout]]"
- "[[tech/htpc-steam-emulators]]"
---
# XGIMI Play 6 — Setup Guide
Chinese GMUI 6 version. ADB over network only (USB ADB non-functional).
IP on home network: `192.168.1.58`.
## Key Constraints
- **Architecture:** arm64-v8a (MT9639 chip) — verify all APKs
- **OS:** GMUI 6.0 (Android 11) — Wireless ADB not available (needs Android 12+)
- **ADB:** Network-only via port 5555
## Bootstrap Sequence
### 1. Install via USB flash (before ADB is up)
APKs must be renamed: `file.apk``file.apk.1` (flash drive workaround).
Flash must be FAT32. Install via built-in file manager.
Install in this order:
1. SystemUI Tuner (github.com/zacharee/Tweaker) — enables ADB
2. Projectivy Launcher — replaces stock XGIMI launcher
### 2. Enable ADB
Settings → find ADB → enable. Connect from Mac:
```bash
brew install android-platform-tools
adb connect 192.168.1.58:5555
adb devices
```
### 3. Install remaining apps via ADB
```bash
adb -s 192.168.1.58:5555 install /path/to/file.apk
```
Recommended apps: LeanKey Keyboard, VLC, Total Commander,
YouTube ReVanced, Кинопоиск TV (4pda.to, regular .apk not .apks).
### 4. Replace launcher
```bash
# Disable stock launcher
adb -s 192.168.1.58:5555 shell pm disable-user --user 0 com.xgimi.home
# Set Projectivy as default
adb -s 192.168.1.58:5555 shell cmd package set-home-activity \
com.spocky.projengmenu/.ui.main.MainActivity
```
### 5. Keyboard
```bash
# Disable Sogou Chinese IME
adb -s 192.168.1.58:5555 shell pm disable-user --user 0 \
com.sohu.inputmethod.sogou.tv
# Enable LeanKey
adb -s 192.168.1.58:5555 shell ime enable \
org.liskovsoft.androidtv.rukeyboard/com.liskovsoft.leankeyboard.ime.LeanbackImeService
adb -s 192.168.1.58:5555 shell ime set \
org.liskovsoft.androidtv.rukeyboard/com.liskovsoft.leankeyboard.ime.LeanbackImeService
```
Language switch: long-press **Space** or **Menu** on remote.
### 6. Russian system language
```bash
adb -s 192.168.1.58:5555 shell setprop persist.sys.locale ru-RU && \
adb -s 192.168.1.58:5555 reboot
```
## Useful Commands
```bash
# Check connectivity
nc -zv 192.168.1.58 5555
# List all packages
adb -s 192.168.1.58:5555 shell pm list packages
# Launch app
adb -s 192.168.1.58:5555 shell monkey -p com.package.name 1
# Re-enable a disabled package
adb -s 192.168.1.58:5555 shell pm enable com.package.name
# Find correct launcher activity name
adb -s 192.168.1.58:5555 shell cmd package resolve-activity \
--brief -c android.intent.category.HOME com.package.name
```
## Rollback
```bash
# Restore stock launcher
adb -s 192.168.1.58:5555 shell pm enable com.xgimi.home
# Restore Chinese keyboard
adb -s 192.168.1.58:5555 shell pm enable com.sohu.inputmethod.sogou.tv
```
## See Also
- [[tech/htpc-kodi-layout]] — HTPC Kodi layout (related home theater setup)
- [[tech/htpc-steam-emulators]] — Bazzite HTPC (different device, same home AV context)