Expandable submenus; better support for other menu systems

This commit is contained in:
Keith Bowes 2024-05-07 22:56:31 -04:00
parent 77652741b5
commit 7a679988ac
4 changed files with 52 additions and 27 deletions

View file

@ -1,4 +1,5 @@
cfdata = configuration_data()
cfdata.set('bindir', get_option('prefix') / get_option('bindir'))
cfdata.set('libexecdir', get_option('prefix') / get_option('libexecdir'))
cfdata.set('localedir', get_option('prefix') / get_option('localedir'))
cfdata.set('sysconfdir', get_option('prefix') / get_option('sysconfdir'))
@ -16,7 +17,6 @@ configure_file(
scripts = files(
'autostart',
'environment',
'menu',
'xdg-autostart',
)
@ -45,3 +45,10 @@ install_data(
install_dir: get_option('prefix') / get_option('datadir') + '/wayland-sessions',
install_mode: 'rw-r--r--',
)
install_data(
'menu',
install_dir: get_option('prefix') / get_option('bindir'),
install_mode: 'rwxr-xr-x',
rename: ['waybox-menu']
)