mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-27 11:51:20 +01:00
This commit adds commands to navigate monitors and workspaces using cycle directions. resolve #47
37 lines
824 B
Rust
37 lines
824 B
Rust
use std::num::NonZeroUsize;
|
|
|
|
use clap::ArgEnum;
|
|
use serde::Deserialize;
|
|
use serde::Serialize;
|
|
use strum::Display;
|
|
use strum::EnumString;
|
|
|
|
#[derive(Clone, Copy, Debug, Serialize, Deserialize, Display, EnumString, ArgEnum)]
|
|
#[strum(serialize_all = "snake_case")]
|
|
pub enum CycleDirection {
|
|
Previous,
|
|
Next,
|
|
}
|
|
|
|
impl CycleDirection {
|
|
#[must_use]
|
|
pub const fn next_idx(&self, idx: usize, len: NonZeroUsize) -> usize {
|
|
match self {
|
|
Self::Previous => {
|
|
if idx == 0 {
|
|
len.get() - 1
|
|
} else {
|
|
idx - 1
|
|
}
|
|
}
|
|
Self::Next => {
|
|
if idx == len.get() - 1 {
|
|
0
|
|
} else {
|
|
idx + 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|