view ci/load-snd-dummy.sh @ 28706:c655908382fa v8.2.4877

patch 8.2.4877: MS-Windows: Wrongly using Normal colors for termguicolors Commit: https://github.com/vim/vim/commit/d560014e032e0646234a56af18ae1bfa6c1f5c90 Author: Christian Brabandt <cb@256bit.org> Date: Thu May 5 21:09:54 2022 +0100 patch 8.2.4877: MS-Windows: Wrongly using Normal colors for termguicolors Problem: MS-Windows: Using Normal colors for termguicolors causes problems. Solution: Do not use Normal colors to set sg_gui_fg and sg_gui_bg. (Christian Brabandt, closes #10317, closes #10241)
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 May 2022 22:15:03 +0200
parents 3a7017ee1161
children
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi