Skip to content

Commit 2024725

Browse files
dylanarapsemersion
authored andcommitted
Add meson options to enable/disable swaybar and swaynag
1 parent 9610218 commit 2024725

File tree

2 files changed

+29
-7
lines changed

2 files changed

+29
-7
lines changed

meson.build

+27-7
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,15 @@ if scdoc.found()
140140
'sway/sway-output.5.scd',
141141
'swaybar/swaybar-protocol.7.scd',
142142
'swaymsg/swaymsg.1.scd',
143-
'swaynag/swaynag.1.scd',
144-
'swaynag/swaynag.5.scd',
145143
]
144+
145+
if get_option('swaynag')
146+
man_files += [
147+
'swaynag/swaynag.1.scd',
148+
'swaynag/swaynag.5.scd',
149+
]
150+
endif
151+
146152
foreach filename : man_files
147153
topic = filename.split('.')[-3].split('/')[-1]
148154
section = filename.split('.')[-2]
@@ -224,9 +230,15 @@ subdir('common')
224230
subdir('sway')
225231
subdir('swaymsg')
226232

227-
subdir('client')
228-
subdir('swaybar')
229-
subdir('swaynag')
233+
if get_option('swaybar') or get_option('swaynag')
234+
subdir('client')
235+
endif
236+
if get_option('swaybar')
237+
subdir('swaybar')
238+
endif
239+
if get_option('swaynag')
240+
subdir('swaynag')
241+
endif
230242

231243
config = configuration_data()
232244
config.set('datadir', join_paths(prefix, datadir))
@@ -274,9 +286,13 @@ endif
274286
if get_option('bash-completions')
275287
bash_files = files(
276288
'completions/bash/sway',
277-
'completions/bash/swaybar',
278289
'completions/bash/swaymsg',
279290
)
291+
292+
if get_option('swaybar')
293+
bash_files += files('completions/bash/swaybar')
294+
endif
295+
280296
if bash_comp.found()
281297
bash_install_dir = bash_comp.get_variable(
282298
pkgconfig: 'completionsdir',
@@ -293,8 +309,12 @@ if get_option('fish-completions')
293309
fish_files = files(
294310
'completions/fish/sway.fish',
295311
'completions/fish/swaymsg.fish',
296-
'completions/fish/swaynag.fish',
297312
)
313+
314+
if get_option('swaynag')
315+
fish_files += files('completions/fish/swaynag.fish')
316+
endif
317+
298318
if fish_comp.found()
299319
fish_install_dir = fish_comp.get_variable(
300320
pkgconfig: 'completionsdir',

meson_options.txt

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ option('default-wallpaper', type: 'boolean', value: true, description: 'Install
22
option('zsh-completions', type: 'boolean', value: true, description: 'Install zsh shell completions.')
33
option('bash-completions', type: 'boolean', value: true, description: 'Install bash shell completions.')
44
option('fish-completions', type: 'boolean', value: true, description: 'Install fish shell completions.')
5+
option('swaybar', type: 'boolean', value: true, description: 'Enable support for swaybar')
6+
option('swaynag', type: 'boolean', value: true, description: 'Enable support for swaynag')
57
option('xwayland', type: 'feature', value: 'auto', description: 'Enable support for X11 applications')
68
option('tray', type: 'feature', value: 'auto', description: 'Enable support for swaybar tray')
79
option('gdk-pixbuf', type: 'feature', value: 'auto', description: 'Enable support for more image formats in swaybg')

0 commit comments

Comments
 (0)