windows-troll 0.1.0

Modular Windows prank library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Modular collection of Windows "troll" modules.
//!
//! Each module is a self-contained unit under [`modules`] that exposes a small
//! library API for a single prank/utility. Modules are gated behind Cargo
//! feature flags (e.g. `window-hider`, `mouse-teleporter`, `window-wobbler`),
//! so you can build only the pranks you want:
//!
//! ```text
//! cargo build --no-default-features --features window-hider
//! ```

#[cfg(any(feature = "window-hider", feature = "window-wobbler"))]
pub mod desktop;
pub mod modules;