Decrease window manage verbosity

This commit is contained in:
Kuba Orlik 2022-05-25 19:49:08 +02:00
parent 84665ba267
commit f5dd1c6535
2 changed files with 2 additions and 1 deletions

View File

@ -156,7 +156,7 @@ if [ ! -z "$WINMGR" -a "$WINMGR" != "none" ] ; then
exit 1 exit 1
fi fi
WINMGRNAME=${WINMGR%% *} WINMGRNAME=${WINMGR%% *}
$WINMGR & $WINMGR > /dev/null 2> /dev/null &
winmgrpid=$! winmgrpid=$!
# Wait for the window manager to startup # Wait for the window manager to startup

View File

@ -1,4 +1,5 @@
var serve = require("koa-static"); var serve = require("koa-static");
const { v4: uuid } = require("uuid");
const Koa = require("koa"); const Koa = require("koa");
const Router = require("@koa/router"); const Router = require("@koa/router");
const mount = require("koa-mount"); const mount = require("koa-mount");