sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit f3c18336d208c5755e3e580f968f00bff39bb5f1
parent 4f57c3da0ee00978e56190e2015482a041e48e82
Author: Martin Kalchev <martin.kalchev@mail.ru>
Date:   Sun, 26 Aug 2018 19:27:18 +0300

added fish to meson.build

Diffstat:
Mmeson.build | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/meson.build b/meson.build @@ -205,3 +205,14 @@ if (get_option('bash_completions')) install_data(bash_files, install_dir: bash_install_dir) endif + +if (get_option('fish_completions')) + fish_files = files( + 'completions/fish/sway.fish', + 'completions/fish/swaylock.fish', + 'completions/fish/swaymsg.fish', + ) + fish_install_dir = datadir + '/fish/completions' + + install_data(fish_files, install_dir: fish_install_dir) +endif