workmux 0.1.173

An opinionated workflow tool that orchestrates git worktrees and tmux
1
2
3
4
5
6
7
//! Spinner animation constants for the dashboard.

/// Braille spinner frames for subtle loading animation
pub const SPINNER_FRAMES: &[char] = &['', '', '', '', '', '', '', '', '', ''];

/// Number of spinner frames (used by event loop to wrap frame counter)
pub const SPINNER_FRAME_COUNT: u8 = SPINNER_FRAMES.len() as u8;