From f8f0d7ae99d020ebb42022691263149a536e0c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 13 Dec 2022 16:36:55 +0100 Subject: [PATCH] meson_options: sort plugin options --- meson_options.txt | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index bd77f77..4290696 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -5,15 +5,12 @@ option( option( 'core-plugins-as-shared-libraries', type: 'boolean', value: false, description: 'Compiles modules, particles and decorations as shared libraries, which are loaded on-demand') -option( - 'plugin-mpd', type: 'feature', value: 'auto', - description: 'Music Player Daemon (MPD) support') -option( - 'plugin-pulse', type: 'feature', value: 'auto', - description: 'PulseAudio support') -option( - 'plugin-pipewire', type: 'feature', value: 'auto', - description: 'Pipewire support') -option( - 'plugin-dwl', type: 'feature', value: 'auto', - description: 'DWL (dwm for wayland) support') + +option('plugin-dwl', type: 'feature', value: 'auto', + description: 'DWL (dwm for wayland) support') +option('plugin-mpd', type: 'feature', value: 'auto', + description: 'Music Player Daemon (MPD) support') +option('plugin-pipewire', type: 'feature', value: 'auto', + description: 'Pipewire support') +option('plugin-pulse', type: 'feature', value: 'auto', + description: 'PulseAudio support')