Skip to content

swiftDialog

A modern macOS dialog utility for administrators that displays beautiful, customizable dialogs from the command line

Download Latest
Download DMG

Release Notes →




Terminal window
# Simple notification
dialog --title "Welcome" \
--message "Hello from swiftDialog!" \
--icon "SF=star.fill"
# User input form
dialog --title "User Information" \
--message "Please enter your details:" \
--textfield "Name,prompt=Enter your name" \
--textfield "Email,prompt=Enter your email" \
--button1text "Submit"
# Progress indicator
dialog --title "Installing Software" \
--message "Please wait while we set things up..." \
--progress 10 \
--progresstext "Starting installation..."