tldev /
Приложение для macOS, которое размывает экран, если вы сутулитесь.
Форки
62
Звёзды
2.3k
Issues
0
A macOS app that blurs your screen when you slouch.
Dorso monitors your posture in real-time using either your Mac's camera or AirPods motion sensors. When it detects that you're slouching, it progressively blurs your screen to remind you to sit up straight. Maintain good posture, and the blur clears instantly.
Join our Discord to share feedback, get help, suggest features, and connect with other Dorso users!
brew install dorso
Dorso-vX.X.X.dmg or .zip from the Releases pageDorso.app to your Applications folderCamera Mode: Requires camera access. When you first launch the app, macOS will ask for permission.
AirPods Mode: Requires Motion & Fitness Activity permission (macOS 14+). This allows the app to read head motion data from your AirPods.
If you accidentally denied permission, you can grant it later in System Settings > Privacy & Security > Camera or Motion & Fitness Activity.
Once launched, Dorso appears in your menu bar with a person icon. The app continuously monitors your posture and applies screen blur when slouching is detected.
Click the menu bar icon to access:
The Settings window (accessible from the menu bar) provides:
Dorso offers two tracking methods:
Uses Apple's Vision framework to detect body pose landmarks:
Uses motion sensors in compatible AirPods (Pro, Max, 3rd gen+):
The screen blur uses macOS's private CoreGraphics API by default for efficient, system-level blur. If the blur doesn't appear on your system, enable Compatibility Mode from settings to use NSVisualEffectView instead.
xcode-select --install)git clone https://github.com/tldev/dorso.git
cd dorso
./build.sh
The built app will be in build/Dorso.app.
# Standard build
./build.sh
# Build with release archive (.zip)
./build.sh --release
swiftc -O \
-framework AppKit \
-framework AVFoundation \
-framework Vision \
-framework CoreImage \
-o Dorso \
Sources/*.swift
Dorso exposes a file-based command interface for external control:
| Command | Description |
|---|---|
capture |
Take a photo and analyze pose |
blur <0-64> |
Set blur level manually |
quit |
Exit the application |
Write commands to /tmp/dorso-command. Responses appear in /tmp/dorso-response.
Dorso processes all video data locally on your Mac. No images or data are ever sent to external servers. The camera feed is used solely for posture detection and is never stored or transmitted.
MIT License - see LICENSE for details.
dorso/
├── Sources/
│ ├── main.swift # App entry point
│ ├── AppDelegate.swift # Main app coordinator and state machine
│ ├── PostureDetector.swift # Protocol for posture detection methods
│ ├── CameraPostureDetector.swift # Camera-based detection (Vision framework)
│ ├── AirPodsPostureDetector.swift # AirPods motion-based detection
│ ├── Models.swift # Shared types (settings keys, profile data, app state)
│ ├── Persistence.swift # Settings and profile storage
│ ├── DisplayManager.swift # Display detection and configuration
│ ├── MenuBar.swift # Menu bar setup and management
│ ├── SettingsWindow.swift # SwiftUI settings window
│ ├── OnboardingWindow.swift # Tracking method selection UI
│ ├── CalibrationWindow.swift # Calibration UI
│ └── BlurOverlay.swift # Screen blur overlay management
├── build.sh # Build script
├── release.sh # Release automation
└── AppIcon.icns # App icon
Contributions are welcome! Please feel free to submit issues and pull requests.
Want this on Linux? See postured or dorso-linux.
Данные обновлены: 16 апреля 2026 г.