This file is indexed.

/usr/share/libquvi-scripts/lua/README is in libquvi-scripts 0.4.21-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
This directory contains the quvi lua scripts. If you are new to lua,
<http://www.lua.org/pil/> is a good place to start.

  website/quvi  - misc. utility scripts that the webscripts use
  website/      - webscripts that are used to parse the media details
  util/         - utility scripts that libquvi uses

Refer to the libquvi API documentation at <http://quvi.sourceforge.net/doc/>
for a tutorial.


Debugging tips
==============

Search paths
------------

Typical libquvi lua script search paths. Scanned in the following order:

  1) $LIBQUVI_SCRIPTSDIR

  2) Current working directory

  3) $HOME/.libquvi-scripts/

  4) $HOME/.config/libquvi-scripts/

  5) $HOME/.local/share/libquvi-scripts/

  6) `pkg-config --variable scriptsdir libquvi-scripts`
     typically this is "$prefix/share/libquvi-scripts/"

The library will look for the scripts under lua/ subdirectory.


Environment variables
---------------------

  LIBQUVI_SHOW_SCANDIR  - If set, libquvi prints out the scanned dir paths
  LIBQUVI_SHOW_SCRIPT   - If set, libquvi prints out the found scripts
  LIBQUVI_SCRIPTSDIR    - If defined, libquvi scans it for the scripts first