mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-02 07:15:31 -04:00
config: add new function config_clone()
This commit is contained in:
parent
42ec264075
commit
f7860aec76
6 changed files with 217 additions and 109 deletions
|
|
@ -2677,11 +2677,11 @@ term_bell(struct terminal *term)
|
|||
notify_notify(term, "Bell", "Bell in terminal");
|
||||
}
|
||||
|
||||
if ((term->conf->bell.command.argv != NULL) &&
|
||||
if ((term->conf->bell.command.argv.args != NULL) &&
|
||||
(!term->kbd_focus || term->conf->bell.command_focused))
|
||||
{
|
||||
int devnull = open("/dev/null", O_RDONLY);
|
||||
spawn(term->reaper, NULL, term->conf->bell.command.argv, devnull, -1, -1);
|
||||
spawn(term->reaper, NULL, term->conf->bell.command.argv.args, devnull, -1, -1);
|
||||
|
||||
if (devnull >= 0)
|
||||
close(devnull);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue