Popularity
6.6
Growing
Activity
7.5
-
634
6
33

Programming language: Go
License: MIT License
Tags: GUI    

zenity alternatives and similar packages

Based on the "GUI" category.
Alternatively, view zenity alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of zenity or a related project?

Add another 'GUI' Package

README

Zenity dialogs for Golang, Windows and macOS

PkgGoDev Go Report Go Report

This repo includes both a cross-platform Go package providing Zenity-like dialogs (simple dialogs that interact graphically with the user), as well as a “port” of the zenity command to both Windows and macOS based on that library.

Implemented dialogs:

Behavior on Windows, macOS and other Unixes might differ slightly. Some of that is intended (reflecting platform differences), other bits are unfortunate limitations.

Installing

The Go package:

go get github.com/ncruces/zenity

The zenity command on macOS/WSL using Homebrew:

brew install ncruces/tap/zenity

Or download the latest release.

Why?

There are a bunch of other dialog packages for Go.\ Why reinvent this particular wheel?

Benefits:

  • no cgo (see benefits, mostly cross-compilation)
  • no main loop (or any other threading or initialization requirements)
  • cancelation through context
  • on Windows:
    • no additional dependencies
    • Explorer shell not required
    • works in Server Core
    • Unicode support
    • High DPI (no manifest required)
    • Visual Styles (no manifest required)
    • WSL/Cygwin/MSYS2 support
  • on macOS:
    • only dependency is osascript
  • on other Unixes:
    • wraps either one of zenity, qarma, matedialog