GithubHelp home page GithubHelp logo

alexleeyy / systray Goto Github PK

View Code? Open in Web Editor NEW

This project forked from getlantern/systray

0.0 1.0 0.0 45.11 MB

a cross platfrom Go library to place an icon and menu in the notification area

License: Apache License 2.0

Shell 0.09% Go 99.06% Batchfile 0.04% C 0.27% C++ 0.34% Objective-C 0.20%

systray's Introduction

Package systray is a cross platfrom Go library to place an icon and menu in the notification area. Tested on Windows 8, Mac OSX, Ubuntu 14.10 and Debian 7.6.

Usage

func main() {
	// Should be called at the very beginning of main().
	systray.Run(onReady, onExit)
}

func onReady() {
	systray.SetIcon(icon.Data)
	systray.SetTitle("Awesome App")
	systray.SetTooltip("Pretty awesome超级棒")
	mQuit := systray.AddMenuItem("Quit", "Quit the whole app")
}

func onExit() {
	// clean up here
}

Menu item can be checked and / or disabled. Methods except Run() can be invoked from any goroutine. See demo code under example folder.

Platform specific concerns

Linux

sudo apt-get install libgtk-3-dev libappindicator3-dev

Checked menu item not implemented on Linux yet.

Windows

Use the Visual Studio solution to build systray.dll. Make sure to target Windows XP and build for Release (not Debug). Put the resulting dll in dll/systray_unsigned.dll and then run ./signdll.bash to sign it. Check the resulting dll into git at Git at dll/systray.dll and run ./embeddll.bash to generate the systraydll_windows.go file.

The solution is configured to build with platform toolset v90 and dynamic linking to save on size and support Windows XP. To get platform toolset v90, you need to install Visual Studio 2008 (express edition is okay). You can build with a more recent Visual Studio, you just need the old one for the toolset.

Try

Under example folder. Place tray icon under icon, and use make_icon.bat or make_icon.sh, whichever suit for your os, to convert the icon to byte array. Your icon should be .ico file under Windows, whereas .ico, .jpg and .png is supported on other platform.

go get
go run main.go

Credits

systray's People

Contributors

joesis avatar oxtoacart avatar fffw avatar vlow avatar myleshorton avatar luckcolors avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.