mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-12-25 04:49:44 +00:00
Update config section readme. Fix skipconfirmation not working with config
This commit is contained in:
parent
15c40d1297
commit
8d536f02e0
|
@ -107,7 +107,9 @@ Note that crates installed using `cargo install` require manual updating with `c
|
|||
Linutil supports configuration through a TOML config file. Path to the file can be specified with `--config` (or `-c`).
|
||||
|
||||
Available options:
|
||||
- `auto_execute` - a list of commands to execute automatically (can be combined with `--skip-confirmation`)
|
||||
- `auto_execute` - A list of commands to execute automatically (can be combined with `--skip-confirmation`)
|
||||
- `skip_confirmation` - Boolean ( Equal to `--skip-confirmation`)
|
||||
- `size_bypass` - Boolean ( Equal to `--size-bypass` )
|
||||
|
||||
Example config:
|
||||
```toml
|
||||
|
@ -118,6 +120,9 @@ auto_execute = [
|
|||
"Alacritty",
|
||||
"Kitty"
|
||||
]
|
||||
|
||||
skip_confirmation = true
|
||||
size_bypass = true
|
||||
```
|
||||
|
||||
```bash
|
||||
|
|
|
@ -155,6 +155,9 @@ impl AppState {
|
|||
}
|
||||
|
||||
fn spawn_confirmprompt(&mut self) {
|
||||
if self.skip_confirmation {
|
||||
self.handle_confirm_command();
|
||||
} else {
|
||||
let cmd_names: Vec<_> = self
|
||||
.selected_commands
|
||||
.iter()
|
||||
|
@ -168,6 +171,7 @@ impl AppState {
|
|||
CONFIRM_PROMPT_FLOAT_SIZE,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
fn get_list_item_shortcut(&self) -> Box<[Shortcut]> {
|
||||
if self.selected_item_is_dir() {
|
||||
|
@ -795,13 +799,8 @@ impl AppState {
|
|||
self.selected_commands.push(node);
|
||||
}
|
||||
}
|
||||
|
||||
if self.skip_confirmation {
|
||||
self.handle_confirm_command();
|
||||
} else {
|
||||
self.spawn_confirmprompt();
|
||||
}
|
||||
}
|
||||
SelectedItem::None => {}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user