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! :)
21 lines
366 B
Meson
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,
|
|
)
|