Skip to content

Instantly share code, notes, and snippets.

View ejbills's full-sized avatar
🎯
Focusing

ejbills

🎯
Focusing
View GitHub Profile
@ejbills
ejbills / main.swift
Last active May 7, 2025 16:53
Get the dock position, height and width in a MacOS Swift Cocoa app
import Cocoa
enum DockPosition {
case bottom
case left
case right
case unknown
}
class DockUtils {