avinyc:monitor-config
This skill should be used when the user asks to configure, optimize, or troubleshoot their display/monitor setup. Triggers on "optimize my monitors", "configure displays", "rotate monitor", "set up my screens", "display settings", "monitor resolution", or any request to adjust multi-monitor arrangements, resolutions, refresh rates, or orientations on macOS.
What this skill does
# Monitor Configuration Assistant Optimize multi-monitor setups on macOS through an interactive interview process. Discover connected displays, understand the user's physical arrangement and workflow, then configure optimal resolutions, refresh rates, and orientations. ## Requirements - macOS - `displayplacer` CLI tool (will prompt to install if missing) ## Workflow ### Step 1: Ensure displayplacer is Installed Check if displayplacer is available: ```bash command -v displayplacer || echo "NOT_INSTALLED" ``` If not installed, offer to install: ```bash brew install displayplacer ``` ### Step 2: Discover Connected Displays Run displayplacer to get full display information: ```bash displayplacer list ``` Parse and present the displays in a clear format: ``` I found these displays: 1. [Type] - [Size] inch - Current: [resolution] @ [hz]Hz - Rotation: [degrees] - Position: [origin] 2. ... ``` Identify each display by: - Serial screen ID (persistent across reboots) - Type (MacBook built-in, external) - Size (27 inch, 32 inch, etc.) ### Step 3: Interview About Physical Setup Ask about the physical arrangement: 1. "Which monitor is in front of you (center)?" 2. "What's to your left? Right?" 3. "Are any monitors rotated vertically (portrait mode)?" 4. "Roughly how far do you sit from your displays? (helps determine optimal resolution)" ### Step 4: Interview About Use Case Ask about primary use: 1. "What do you primarily use this setup for?" - Programming/code reading - Video editing/media production - General productivity - Gaming - Mixed use 2. "Do you prefer maximum sharpness (smaller text) or comfortable readability (larger text)?" 3. "Is smooth scrolling important to you? (120Hz vs 60Hz)" ### Step 5: Analyze and Recommend Based on the interview, reference `references/resolution_guidelines.md` for optimal settings. Consider: - **4K displays**: Can run at native 4K, scaled 1440p, or scaled 1080p - **Portrait orientation**: Use `degree:90` or `degree:270` depending on cable exit preference - **Refresh rates**: Prioritize 120Hz for programming/gaming if available - **Main display**: Set the center/primary monitor as main with `origin:(0,0)` Present the recommendation: ``` Based on your setup, I recommend: Center (32" Dell): 3840x2160 @ 120Hz - Main display → Maximum 4K sharpness, smooth scrolling Left (27" Dell): 1800x3200 @ 60Hz portrait → Vertical for code reading, high resolution Right (MacBook): 1512x982 @ 120Hz → Native Retina scaling Want me to apply this configuration? ``` ### Step 6: Apply Configuration Construct and execute the displayplacer command: ```bash displayplacer \ "id:[DISPLAY_ID] res:[WIDTH]x[HEIGHT] hz:[REFRESH] color_depth:8 enabled:true [scaling:on] origin:([X],[Y]) degree:[ROTATION]" \ "id:[DISPLAY_ID] ..." \ "id:[DISPLAY_ID] ..." ``` Key parameters: - `id:` - Use persistent screen ID for reliability - `res:` - Resolution (check available modes in displayplacer list) - `hz:` - Refresh rate - `scaling:on` - Enable HiDPI scaling (omit for native resolution) - `origin:` - Position relative to other displays - `degree:` - Rotation (0, 90, 180, 270) ### Step 7: Verify and Save Profile After applying, verify the configuration: ```bash displayplacer list | grep -E "(Serial screen id|Resolution:|Origin:|Rotation:)" ``` Offer to save as a reusable profile: ```bash mkdir -p ~/.config/display-profiles ``` Create a shell script for the profile: ```bash #!/bin/bash # Profile: [name] # [description] displayplacer \ "id:... res:... hz:... ..." echo "Profile [name] applied" ``` Optionally add shell aliases for quick switching. ## Troubleshooting ### Monitor Shows Upside Down Change rotation from `degree:90` to `degree:270` or vice versa. ### Resolution Mode Not Found Some resolutions require `scaling:on`, others don't. Check the available modes in `displayplacer list` output and match exactly. ### Display IDs Changed Use serial screen IDs (start with 's') instead of persistent IDs for more reliability, or use contextual IDs with the `--contextual` flag. ### Portrait Resolution Format When rotated, specify resolution in portrait format: `1080x1920` instead of `1920x1080`. ## Example Session ``` User: optimize my monitors Claude: Let me check your connected displays... [runs displayplacer list] I found 3 displays: 1. MacBook Pro 16" - Built-in Liquid Retina XDR 2. Dell S3225QS - 32" 4K @ 120Hz capable 3. Dell U2720Q - 27" 4K @ 60Hz capable How are these physically arranged? User: The 32" is center, 27" is on my left rotated vertical, MacBook on right Claude: Great setup for coding! How far do you sit from the displays? User: About 2.5 feet Claude: At 2.5 feet from 4K displays, here's what I recommend: - 32" center: 3840x2160 @ 120Hz (full 4K, maximum sharpness) - 27" left: 1800x3200 portrait @ 60Hz (tons of code lines visible) - MacBook right: Native Retina @ 120Hz Want me to apply this? User: Yes Claude: [applies configuration] Done! Your displays are now configured: - 32" Dell: Main display, 4K @ 120Hz - 27" Dell: Portrait left, 1800x3200 - MacBook: Right side, native resolution I've also saved this as a profile at ~/.config/display-profiles/coding.sh Run `display-coding` to restore this configuration anytime. ```
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.