Initial commit

This commit is contained in:
2026-01-26 16:43:01 -05:00
commit 23cb27503e
39 changed files with 96557 additions and 0 deletions

53
docs/README.md Normal file
View File

@@ -0,0 +1,53 @@
# Documentation Hub
Welcome to your knowledge base! This is your personal wiki for capturing ideas, projects, and concepts.
## 📖 How to Use
### Daily Notes
Capture thoughts, tasks, and reflections each day. These form the foundation of your memory palace.
**Quick Start:** Use "Foam: Open Daily Note" command
### Projects
Document ongoing projects, including goals, progress, and decisions.
### Concepts
Evergreen notes on core ideas, principles, and frameworks. These should be:
- Atomic (one concept per note)
- Concept-oriented (not task or project-specific)
- Densely linked
### Fleeting Notes
Quick captures that need to be processed later. Review regularly and:
- Elaborate into concept notes
- Move to project documentation
- Archive or delete
## 🔗 Linking Strategy
Use `[[wiki-links]]` to connect ideas:
- Link to related concepts
- Reference projects
- Connect daily notes
- Build a web of knowledge
## 📋 Templates
Create templates in your notes for consistency:
- Meeting notes
- Project kickoffs
- Book/article notes
- Decision logs
---
**Tip:** Start with fleeting notes, let patterns emerge, then organize into concepts and projects.

16
docs/fleeting/README.md Normal file
View File

@@ -0,0 +1,16 @@
# Fleeting Notes
Quick captures and temporary notes go here.
Use this folder for:
- Random thoughts
- Quick ideas
- Meeting jots
- Things to process later
**Tip:** Review this folder weekly and either:
- Elaborate into concept notes
- Move to project docs
- Archive or delete

0
docs/projects/README.md Normal file
View File

View File

@@ -0,0 +1,56 @@
# Paperlyte Project
Documentation and development for Paperlyte-related projects and features.
## 📁 Project Structure
### [iPhone Media Playback When Plugged In](iPhone_Media_Playback_When_Plugged_In/)
iOS automation for switching media playback and volume when device is plugged in.
**Contents:**
- iOS Automation configuration
- iOS Shortcut setup for media bridge switching
- Volume control automation
**Status:** ⚙️ In Progress
---
## 🎯 About Paperlyte
<!-- Add project overview here -->
## 📋 Projects Overview
| Project | Status | Description |
| --------------------------------------------------------------- | -------------- | ------------------------------------------- |
| [iPhone Media Playback](iPhone_Media_Playback_When_Plugged_In/) | ⚙️ In Progress | Automated media switching on device plug-in |
## 🚀 Getting Started
<!-- Add general setup instructions for Paperlyte development -->
## 📝 Adding New Projects
When creating a new project folder:
1. Create folder in `/docs/projects/paperlyte/`
2. Add project README inside the folder
3. Update this README:
- Add folder to **Project Structure** section
- Add entry to **Projects Overview** table
- Update any relevant links or references
## 🔗 Related Resources
<!-- Add links to related documentation, repositories, tools, etc. -->
## 📅 Project Timeline
<!-- Track major milestones and deadlines -->
---
**Last Updated:** January 20, 2026

View File

@@ -0,0 +1,94 @@
# iPhone Media Playback When Plugged In
iOS automation project for automatically switching media playback and adjusting volume when iPhone is plugged into power.
## 📸 Documentation
### iOS Automation Setup
![iOS Automation - Run iOS Shortcut to switch media and turn volume up](iOS%20Automation%20-%20Run%20iOS%20Shortcut%20to%20switch%20media%20and%20turn%20volume%20up.PNG)
Configuration for iOS Automation that triggers when device is connected to power.
### iOS Shortcut
![iOS Shortcut - Switch media to bridge and volume to 100](iOS%20Shortcut%20-%20Switch%20media%20to%20bridge%20and%20volume%20to%20100.PNG)
Shortcut configuration that:
- Checks if audio bridge device is available/connected
- Switches media playback to audio bridge (if available)
- Sets volume to 100%
## 🎯 Purpose
Automatically configure iPhone media settings when plugged in for optimal audio playback through external speakers/bridge. Only switches output if the target device is physically connected and available.
## ⚙️ Setup
1. **Create iOS Shortcut:**
- Open Shortcuts app on iOS
- Create new shortcut with the following actions:
1. **Get Available Playback Destinations** (or **Get Audio Output**)
2. **If** [Playback Destinations] **contains** [Your Audio Bridge Name]
3. **Set Playback Destination** → Select your audio bridge
4. **Set Volume** → 100%
5. **End If**
- Name it appropriately (e.g., "Media Bridge Setup")
2. **Configure Automation:**
- Open Settings → Shortcuts → Automation
- Create new automation with "Charger" trigger
- Select "Is Connected" condition
- Add action to run the shortcut created above
- Disable "Ask Before Running" for automatic execution
## 🔧 Requirements
- iOS device
- Shortcuts app (built-in on iOS)
- Audio bridge/external speaker system
## <20> Shortcut Logic
```
Get Available Playback Destinations
IF [Playback Destinations] [contains] [Your Audio Bridge]
Set Playback Destination → [Your Audio Bridge]
Set Volume → 100%
END IF
```
**Alternative approach using text matching:**
```
Get Audio Output
Get Text from [Audio Output]
IF [Text] [contains] [Bridge Name]
Set Playback Destination → [Your Audio Bridge]
Set Volume → 100%
END IF
```
## 📝 Notes
- Automation runs automatically when device is plugged in
- Shortcut checks for device availability before attempting to switch
- Volume is set to maximum (100%) - adjust in shortcut if needed
- If audio bridge is not available/connected, shortcut will do nothing (silent fail)
- Media output device name can be customized in the conditional check
- No error messages or notifications if device unavailable (prevents interruptions)
## 🚀 Future Enhancements
- [ ] Add volume level customization based on time of day
- [ ] Include notification when automation runs successfully
- [ ] Support for different audio devices based on location
- [ ] Add volume fade-in instead of instant 100%
- [x] Check device availability before switching (implemented)
- [ ] Add fallback device if primary bridge unavailable
---
**Status:** ⚙️ In Progress
**Last Updated:** January 20, 2026