view ci/setup-xvfb.sh @ 32198:8643e060bcb8 v9.0.1430

patch 9.0.1430: Livebook files are not recognized Commit: https://github.com/vim/vim/commit/64002035178ac3e0d9ab7269d1bf06c6ede5a854 Author: Mathias Jean Johansen <mathias@mjj.io> Date: Tue Mar 28 21:28:36 2023 +0100 patch 9.0.1430: Livebook files are not recognized Problem: Livebook files are not recognized. Solution: Add a pattern for Livebook files. (Mathias Jean Johansen, closes #12203)
author Bram Moolenaar <Bram@vim.org>
date Tue, 28 Mar 2023 22:30:04 +0200
parents 1984a3fcc953
children
line wrap: on
line source

#!/bin/bash
set -e

apt-get install -y xvfb

cat <<EOT >/etc/systemd/system/xvfb.service
[Unit]
Description=X Virtual Frame Buffer Service
After=network.target
[Service]
ExecStart=/usr/bin/Xvfb :99 -screen 0 1024x768x24
[Install]
WantedBy=multi-user.target
EOT

systemctl enable xvfb.service
systemctl start xvfb.service