1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

exec: contribute "light" theme overrides

Add exec-theme.{c,h} with the exec plugin contribution to the built-in
"light" theme: 2 entries (exec.color.flag_finished=red,
exec.color.flag_running=green) tuned for a light-background terminal.

Same 2D-array pattern as the other plugin contributions.

Default option values are NOT changed.
This commit is contained in:
Sébastien Helleu
2026-05-27 18:08:05 +02:00
parent f117b74933
commit adaa7e8f87
4 changed files with 101 additions and 0 deletions
+3
View File
@@ -32,6 +32,7 @@
#include "exec-command.h"
#include "exec-completion.h"
#include "exec-config.h"
#include "exec-theme.h"
WEECHAT_PLUGIN_NAME(EXEC_PLUGIN_NAME);
@@ -742,6 +743,8 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
if (!exec_config_init ())
return WEECHAT_RC_ERROR;
exec_theme_init ();
exec_config_read ();
/* hook some signals */