Initial commit: KPopBird - macOS sleep prevention menu bar app

Swift macOS menu bar app with Samjokoo (삼족오) icon.
Features: display/system sleep prevention, timer mode, battery awareness, auto-start on login.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
charleskwon
2026-04-12 12:52:01 +09:00
commit 8c08d92613
7 changed files with 422 additions and 0 deletions

13
Package.swift Normal file
View File

@@ -0,0 +1,13 @@
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "KPopBird",
platforms: [.macOS(.v13)],
targets: [
.executableTarget(
name: "KPopBird",
path: "Sources/KPopBird"
)
]
)