hyprshell_core_lib/util/const.rs
1pub const APPLICATION_ID: &str = "com.github.h3rmt.hyprshell";
2pub const OVERVIEW_NAMESPACE: &str = "hyprshell_overview";
3pub const SWITCH_NAMESPACE: &str = "hyprshell_switch";
4pub const LAUNCHER_NAMESPACE: &str = "hyprshell_launcher";
5
6// from https://github.com/i3/i3/blob/next/i3-sensible-terminal
7// shorted to only the most common ones that I know support -e option
8pub const TERMINALS: [&str; 9] = [
9 "alacritty",
10 "kitty",
11 "wezterm",
12 "foot",
13 "qterminal",
14 "lilyterm",
15 "tilix",
16 "terminix",
17 "konsole",
18];