This file is indexed.

/usr/share/lyx/layouts/varwidth.module is in lyx-common 2.2.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#\DeclareLyXModule{Variable-width Minipages}
#DescriptionBegin
# Adds a 'Minipage (Var. Width)' inset using the varwidth LaTeX package.
# The varwidth package provides a variable-width minipage, whose resulting
# width is the width of its contents (if this does not exceed the specified
# maximum width).
#
# The inset has two optional arguments: vertical adjustment (c|t|b) and
# maximum width (defaults to \linewidth).
#DescriptionEnd
#
# Authors: Guillaume Munch <gm@lyx.org>
# 	   Jürgen Spitzmüller <spitz@lyx.org>

Format 60

InsetLayout Flex:Minipage_(Var._Width)
  LyXType     		custom
  LabelString 		"Minipage (var.)"
  LatexType		Environment
  LatexName		varwidth
  Decoration  		Classic
  MultiPar              true
  CustomPars  		true
  ResetsFont 		true
  LabelFont
    Color               foreground
    Size                Small
  EndFont
  Argument 1
    LabelString 	"Vert. Adjustment"
    Tooltip 		"Vertical adjustment: c (center), t (top) or b (bottom)"
  EndArgument
  Argument 2
    LabelString 	"Max. Width"
    Tooltip 		"Maximum width (default: \linewidth)"
    DefaultArg 		"\linewidth"
    Mandatory 		1
  EndArgument
  Requires		varwidth
End