meson_options.txt
ASCII text
1option( 2'theme_name', 3type: 'string', 4value: 'Materia', 5description: 'Set theme name', 6) 7 8option( 9'colors', 10type: 'array', 11choices: ['default', 'light', 'dark'], 12description: 'Choose color variant(s)', 13) 14 15option( 16'sizes', 17type: 'array', 18choices: ['default', 'compact'], 19description: 'Choose size variant(s)', 20) 21 22option( 23'gnome_shell_version', 24type: 'string', 25description: 'Manually set gnome-shell version', 26) 27 28option( 29'flatpak', 30type: 'boolean', 31value: false, 32description: 'Build theme for flatpak package', 33) 34