toumei 1.1.0

Detects system tray transparency on macOS, Windows, and Linux
Documentation
1
2
3
4
5
6
7
// src/platforms/unsupported.rs

use crate::{Error, Mode};

pub fn detect_tray_transparency() -> Result<Mode, Error> {
    Err(Error::UnsupportedPlatform)
}