hyprshell_core_lib/util/
const.rs

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