Initial commit: HUDini — classic volume HUD for macOS

Menu bar utility that shows a centered HUD overlay with volume bars
when system volume changes. CoreAudio monitoring, auto-fade, works
on all spaces and fullscreen.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
johnfrum1234 2026-03-10 13:28:41 +02:00
commit cee343dd96
9 changed files with 497 additions and 0 deletions

19
Package.swift Normal file
View file

@ -0,0 +1,19 @@
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "HUDini",
platforms: [.macOS(.v13)],
targets: [
.executableTarget(
name: "HUDini",
path: "Sources/HUDini",
exclude: ["Resources"],
linkerSettings: [
.linkedFramework("Cocoa"),
.linkedFramework("CoreAudio"),
.linkedFramework("AudioToolbox"),
]
)
]
)