view ci/setup-xvfb.sh @ 31944:87ed5e064db2 v9.0.1304

patch 9.0.1304: "$" for 'list' option displayed in wrong position Commit: https://github.com/vim/vim/commit/234c3fab28c14846b962c90097496b27ee1b4df8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 12 14:42:15 2023 +0000 patch 9.0.1304: "$" for 'list' option displayed in wrong position Problem: "$" for 'list' option displayed in wrong position when there are text properties. Solution: Adjust logic for order of displayed items. (closes #11959)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Feb 2023 15:45:04 +0100
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