From 5e2b6c6ead4e5ffd87a718bef2044f6a4da90ba6 Mon Sep 17 00:00:00 2001 From: koekeishiya Date: Thu, 11 Jul 2019 13:58:59 +0200 Subject: [PATCH] #108 notify instead of log if scripting-addition is not installed --- src/yabai.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yabai.c b/src/yabai.c index b2e926d7..c524fb25 100644 --- a/src/yabai.c +++ b/src/yabai.c @@ -271,7 +271,7 @@ int main(int argc, char **argv) if (scripting_addition_is_installed()) { scripting_addition_load(); } else { - warn("yabai: scripting-addition is not installed! some functionality will not work as expected..\n"); + notify("payload is not installed, some features will not work!", "scripting-addition"); } SLSRegisterConnectionNotifyProc(g_connection, connection_handler, 1204, NULL);