Skip to content

thatsmydoing/rusttray

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rusttray

A rudimentary system tray implemented in Rust.

This is more of an experiment than something you should use on a daily basis. I primarily wrote it to understand how the system tray mechanics work in X. This doesn't actually implement all of the system tray specification but it works for most of the programs I use.

rusttray only implements XEMBED style icons. The tray icons themselves perform the drawing and the tray only manages their sizes and positions. It does not draw icons by itself. In addition, balloon messages are not handled as well.

How it works

When starting,

  1. Create a window
  2. Acquire a selection to _NET_SYSTEM_TRAY_S0
  3. Announce arrival as manager
  4. Receive client messages to request docking
  5. Reparent tray icon windows into our window
  6. Map the tray icon windows

When exiting,

  1. Unmap tray icon windows
  2. Reparent tray icon windows back to screen root
  3. Release the selection

It is important that the tray waits for the reparenting back to root to actually finish. If the tray exits before the tray windows are reparented, it will cause those applications to crash.

About

A rudimentary system tray written in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages