From ba3e2c2595e125d2728239573047a99bb5422974 Mon Sep 17 00:00:00 2001 From: Doro Wu Date: Wed, 11 Apr 2018 13:06:47 +0900 Subject: [PATCH] fix: resolution not work (issue #68) --- image/startup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/startup.sh b/image/startup.sh index 68b1e99..80bcae3 100755 --- a/image/startup.sh +++ b/image/startup.sh @@ -9,7 +9,7 @@ if [ -n "$VNC_PASSWORD" ]; then fi if [ -n "$RESOLUTION" ]; then - sed -i "s/1024x768/$RESOLUTION/" /etc/supervisor/conf.d/supervisord.conf + sed -i "s/1024x768/$RESOLUTION/" /usr/local/bin/xvfb.sh fi USER=${USER:-root}