hyprswitch 3.3.2

A CLI/GUI that allows switching between windows in Hyprland
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Subcommand;

#[derive(Subcommand, Debug, Clone)]
pub enum DebugCommand {
    /// Search for an icon with a window class
    Search {
        /// The class (from `hyprctl clients -j | jq -e ".[] | {title, class}"`) of a window to find an icon for
        #[arg(long)]
        class: String,
    },

    /// List all icons in the theme
    List,

    /// List all desktop files
    DesktopFiles,
}