Gimp/etc/meson.build
Ell fa53e1433f etc: add a default toolrc file, using tool groups to oragnize the tools
Add a default toolrc file, installed in the sysconf dir, with a
more minimalistic tool layout using groups, inspired by Photoshop
(not identical, though, don't kill me! :)
2020-01-30 02:53:24 +02:00

21 lines
366 B
Meson

etcconf = configuration_data()
etcconf.set('mypaint_brushes_dir', mypaint_brushes_dir)
install_data(
[
'controllerrc',
configure_file(
input : 'gimprc.in',
output: 'gimprc',
configuration: etcconf,
),
'gimp.css',
'menurc',
'sessionrc',
'templaterc',
'toolrc',
'unitrc',
],
install_dir: gimpsysconfdir,
)