trayify

A Python module for super simple system tray applications
Download

trayify Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • Kristofer M White
  • Publisher web site:
  • http://kmwhite.github.com/

trayify Tags


trayify Description

trayify is a Python library to provide a simple api to create basic systemtray icon applications.Example#!/usr/bin/env pythonimport trayifyclass SimpleIcon(object): def show_event(self, event): self.ico.show_message("The Foo menu item was clicked") raise Exception def __init__(self): self.ico = trayify.initialize('gtk') self.ico.create_icon() x = {'foo': self.show_event} self.ico.add_menu(x) self.ico.start()if __name__ == "__main__": SimpleIcon()Product's homepage


trayify Related Software