2020-03-29 12:21:28 +02:00
|
|
|
zsh_install_dir = join_paths(get_option('datadir'), 'zsh', 'site-functions')
|
2021-01-07 22:21:07 +03:00
|
|
|
fish_install_dir = join_paths(get_option('datadir'), 'fish', 'vendor_completions.d')
|
2021-03-13 19:04:33 +01:00
|
|
|
bash_install_dir = join_paths(get_option('datadir'), 'bash-completion', 'completions')
|
2019-10-20 11:54:58 +02:00
|
|
|
install_data('zsh/_foot', install_dir: zsh_install_dir)
|
2019-11-01 20:39:34 +01:00
|
|
|
install_data('zsh/_footclient', install_dir: zsh_install_dir)
|
2021-01-07 22:21:07 +03:00
|
|
|
install_data('fish/foot.fish', install_dir: fish_install_dir)
|
|
|
|
|
install_data('fish/footclient.fish', install_dir: fish_install_dir)
|
2021-03-13 19:04:33 +01:00
|
|
|
install_data('bash/foot', install_dir: bash_install_dir)
|
|
|
|
|
install_data('bash/footclient', install_dir: bash_install_dir)
|