view ci/setup-xvfb.sh @ 28532:11387538e7c4 v8.2.4790

patch 8.2.4790: lilypond filetype not recognized Commit: https://github.com/vim/vim/commit/c448e9c95089b5e7170a0dd36635a226c5eb5b1c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 19 15:29:57 2022 +0100 patch 8.2.4790: lilypond filetype not recognized Problem: Lilypond filetype not recognized. Solution: Add patterns for lilypond. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Tue, 19 Apr 2022 16:45:03 +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