mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-06-16 00:05:40 +02:00
meson: make ‘foreign-toplevel’ plugin compile time optional
This commit is contained in:
parent
56b0047004
commit
9ef6d73663
4 changed files with 12 additions and 7 deletions
|
@ -139,6 +139,7 @@ yambar = executable(
|
|||
plugin_cpu_enabled ? '-DPLUGIN_ENABLED_CPU' : [],
|
||||
plugin_disk_io_enabled ? '-DPLUGIN_ENABLED_DISK_IO' : [],
|
||||
plugin_dwl_enabled ? '-DPLUGIN_ENABLED_DWL' : [],
|
||||
plugin_foreign_toplevel_enabled ? '-DPLUGIN_ENABLED_FOREIGN_TOPLEVEL' : [],
|
||||
plugin_mem_enabled ? '-DPLUGIN_ENABLED_MEM' : [],
|
||||
plugin_mpd_enabled ? '-DPLUGIN_ENABLED_MPD' : [],
|
||||
plugin_i3_enabled ? '-DPLUGIN_ENABLED_I3' : [],
|
||||
|
@ -197,6 +198,7 @@ summary(
|
|||
'CPU monitoring': plugin_cpu_enabled,
|
||||
'Disk I/O monitoring': plugin_disk_io_enabled,
|
||||
'DWL (dwm for Wayland)': plugin_dwl_enabled,
|
||||
'Foreign toplevel (window tracking for Wayland)': plugin_foreign_toplevel_enabled,
|
||||
'Memory monitoring': plugin_mem_enabled,
|
||||
'Music Player Daemon (MPD)': plugin_mpd_enabled,
|
||||
'i3+Sway': plugin_i3_enabled,
|
||||
|
@ -209,7 +211,7 @@ summary(
|
|||
'Script': plugin_script_enabled,
|
||||
'Sway XKB keyboard': plugin_sway_xkb_enabled,
|
||||
'XKB keyboard (for X11)': plugin_xkb_enabled,
|
||||
'XWindow': plugin_xwindow_enabled,
|
||||
'XWindow (window tracking for X11)': plugin_xwindow_enabled,
|
||||
},
|
||||
section: 'Optional modules',
|
||||
bool_yn: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue