File: meson_options.txt

package info (click to toggle)
arc-theme 20221218-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,028 kB
  • sloc: xml: 4,691; python: 94; makefile: 9
file content (39 lines) | stat: -rw-r--r-- 814 bytes parent folder | download
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
option(
  'themes',
  type: 'array',
  choices: ['cinnamon', 'gnome-shell', 'gtk2', 'gtk3', 'gtk4', 'metacity', 'plank', 'unity', 'xfwm', 'labwc'],
  description: 'List of themes to build',
)

option(
  'variants',
  type: 'array',
  choices: ['light', 'darker', 'dark', 'lighter'],
  description: 'List of theme variants to build',
)

option(
  'transparency',
  type: 'boolean',
  value: true,
  description: 'Enable or disable transparency',
)

option(
  'cinnamon_version',
  type: 'string',
  description: 'Build Cinnamon theme for specific version',
)

option(
  'gnome_shell_version',
  type: 'string',
  description: 'Build GNOME Shell theme for specific version',
)

option(
  'gnome_shell_gresource',
  type: 'boolean',
  value: false,
  description: 'Compile GNOME Shell theme into a gresource file',
)