* zellij: Add global `DEBUG_MODE` variable that tells us whether zellij was started with the `--debug` CLI flag. * utils/errors: Only log thread_bus message in debug mode, and discard the message otherwise. * utils/logging: Increase logsize to 16 MiB per logfile, totaling 32 MiB of logs at most (in two files). * zellij: Set global `DEBUG` variable in server thread and make sure the value of the `--debug` CLI flag is propagated to the server, too. This means that to enable debug mode, the server must be started with the `--debug` flag. This happens when the first client that starts the zellij session has the `--debug` flag set, because it will be forwarded to the server. Subsequent clients attaching to the same session with the `--debug` flag specified **do not** override the value of the `DEBUG` variable. Hence, if the server wasn't started in debug mode, this cannot be changed.
81 lines
2.5 KiB
Rust
81 lines
2.5 KiB
Rust
mod commands;
|
|
mod install;
|
|
mod sessions;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
use zellij_utils::{
|
|
clap::Parser,
|
|
cli::{CliAction, CliArgs, Command, Sessions},
|
|
logging::*,
|
|
};
|
|
|
|
fn main() {
|
|
configure_logger();
|
|
let opts = CliArgs::parse();
|
|
|
|
{
|
|
if let Some(Command::Sessions(Sessions::Action(cli_action))) = opts.command {
|
|
commands::send_action_to_session(cli_action, opts.session);
|
|
std::process::exit(0);
|
|
}
|
|
if let Some(Command::Sessions(Sessions::Run {
|
|
command,
|
|
direction,
|
|
cwd,
|
|
floating,
|
|
})) = opts.command
|
|
{
|
|
let command_cli_action = CliAction::NewPane {
|
|
command,
|
|
direction,
|
|
cwd,
|
|
floating,
|
|
};
|
|
commands::send_action_to_session(command_cli_action, opts.session);
|
|
std::process::exit(0);
|
|
}
|
|
if let Some(Command::Sessions(Sessions::Edit {
|
|
file,
|
|
direction,
|
|
line_number,
|
|
floating,
|
|
})) = opts.command
|
|
{
|
|
let command_cli_action = CliAction::Edit {
|
|
file,
|
|
direction,
|
|
line_number,
|
|
floating,
|
|
};
|
|
commands::send_action_to_session(command_cli_action, opts.session);
|
|
std::process::exit(0);
|
|
}
|
|
if let Some(Command::Sessions(Sessions::ConvertConfig { old_config_file })) = opts.command {
|
|
commands::convert_old_config_file(old_config_file);
|
|
std::process::exit(0);
|
|
}
|
|
if let Some(Command::Sessions(Sessions::ConvertLayout { old_layout_file })) = opts.command {
|
|
commands::convert_old_layout_file(old_layout_file);
|
|
std::process::exit(0);
|
|
}
|
|
if let Some(Command::Sessions(Sessions::ConvertTheme { old_theme_file })) = opts.command {
|
|
commands::convert_old_theme_file(old_theme_file);
|
|
std::process::exit(0);
|
|
}
|
|
}
|
|
|
|
if let Some(Command::Sessions(Sessions::ListSessions)) = opts.command {
|
|
commands::list_sessions();
|
|
} else if let Some(Command::Sessions(Sessions::KillAllSessions { yes })) = opts.command {
|
|
commands::kill_all_sessions(yes);
|
|
} else if let Some(Command::Sessions(Sessions::KillSession { ref target_session })) =
|
|
opts.command
|
|
{
|
|
commands::kill_session(target_session);
|
|
} else if let Some(path) = opts.server {
|
|
commands::start_server(path, opts.debug);
|
|
} else {
|
|
commands::start_client(opts);
|
|
}
|
|
}
|