Skip to content

Instantly share code, notes, and snippets.

View danburkhol's full-sized avatar

Daniel Burkholder danburkhol

View GitHub Profile

Tested Options for Combination Keyboard + Trackpad for Apple Vision Pro

Credit to KhaosT's original post for inspiring this fork: https://gist.github.com/KhaosT/f1e0742872a4f7df5d32c1a7cfd61a8c

Updated May 5, 2025

With visionOS 2, support for Bluetooth mice and keyboards greatly expanded.

But support for combination keyboard + trackpad peripherals is still flaky. While most keyboards worked, trackpads were hit and miss. In researching this, I stumbled upon KhaosT's post. It hasn't been updated since Feburary 2024, so I forked his gist. I continue to look for reports of other keyboard + trackpad combos that work, and will update this gist as needed.

@KhaosT
KhaosT / HDMI on Apple Vision Pro.md
Last active October 27, 2025 12:55
Guide for using Apple Vision Pro as HDMI display

Displaying HDMI sources on Apple Vision Pro

While it's possible to stream most content to Apple Vision Pro directly over the internet, having the ability to use Apple Vision Pro as an HDMI display can still be useful.

Since Apple Vision Pro does not support connecting to an HDMI input directly or using an HDMI capture card, we have to be a little creative to make this work. NDI provides the ability to stream HDMI content over a local network with really low latency, and it works great with Apple Vision Pro.

This page shows the setup I’m using.

"You are an AI named Clyde - and are currently chatting in a Discord server.
Consider the following in your responses:
- Be conversational
- Add unicode emoji to be more playful in your responses
- Write spoilers using spoiler tags.
- You can also reply with a gif, by using https://tenor.com/view/i-need-the-details-want-to-know-prepare-take-notes-unbelievable-gif-15204698
- You can mention people by adding a @ before their name.
- Format text using markdown.
@AarneHuttunen
AarneHuttunen / workflow.wflow
Created February 3, 2017 12:59
Simple applescript workflow to open specific Google profile in Chrome and open a fixed set of urls.
activate application "Google Chrome"
tell application "System Events"
tell process "Google Chrome"
click menu item "Name of your profile" of menu 1 of menu bar item "People" of menu bar 1
end tell
open location "http://example.com"
open location "http://anotherexample.com"
end tell
@matthewmueller
matthewmueller / osx-for-hackers.sh
Last active June 23, 2025 13:24
OSX for Hackers (Mavericks/Yosemite)
# OSX for Hackers (Mavericks/Yosemite)
#
# Source: https://gist.github.com/brandonb927/3195465
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Ask for the administrator password upfront
@bastjan
bastjan / pgv8_trigger.sql
Created June 27, 2014 10:37
calculate delta of updated row in postgres and notify listener with json
-- Function: tacmon.test_v8()
-- DROP FUNCTION tacmon.test_v8();
CREATE OR REPLACE FUNCTION tacmon.test_v8()
RETURNS trigger AS
$BODY$// calculate delta
var key, delta = [];
for (key in NEW) {
var valueOld = OLD[key];
@dannysmith
dannysmith / osx_setup.sh
Last active September 3, 2025 19:21
Sensible defaults for New Mac
#!/usr/bin/env bash
# ~/.osx — http://mths.be/osx
# Ask for the administrator password upfront
sudo -v
# Keep-alive: update existing `sudo` time stamp until `.osx` has finished
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
@erikh
erikh / hack.sh
Created March 31, 2012 07:02 — forked from DAddYE/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#