/usr/share/zsh/site-functions
NameSizeModeActions
_bluetoothctl24400644editdlrm
_bootctl11010644editdlrm
_busctl30570644editdlrm
_coredumpctl15820644editdlrm
_curl134280644editdlrm
_firewalld190610644editdlrm
_hostnamectl22700644editdlrm
_imunify360_agent153830644editdlrm
_journalctl59750644editdlrm
_kernel-install6510644editdlrm
_localectl35850644editdlrm
_loginctl58040644editdlrm
_sd_hosts_or_user_at_host1160644editdlrm
_sd_machines3550644editdlrm
_sd_outputmodes2890644editdlrm
_sd_unit_files2550644editdlrm
_systemctl156060644editdlrm
_systemd38390644editdlrm
_systemd-analyze30650644editdlrm
_systemd-delta5640644editdlrm
_systemd-inhibit10610644editdlrm
_systemd-resolve23300644editdlrm
_systemd-run31360644editdlrm
_systemd-tmpfiles7360644editdlrm
_timedatectl20420644editdlrm
_udevadm59970644editdlrm
Edit: /usr/share/zsh/site-functions/_bootctl (1101B)
#compdef bootctl # SPDX-License-Identifier: LGPL-2.1+ (( $+functions[_bootctl_command] )) || _bootctl_command() { local -a _bootctl_cmds _bootctl_cmds=( "status:Show status of installed systemd-boot and EFI variables" "install:Install systemd-boot to the ESP and EFI variables" "update:Update systemd-boot in the ESP and EFI variables" "remove:Remove systemd-boot from the ESP and EFI variables" ) if (( CURRENT == 1 )); then _describe -t commands 'bootctl command' _bootctl_cmds || compadd "$@" else local curcontext="$curcontext" cmd="${${_bootctl_cmds[(r)$words[1]:*]%%:*}}" if (( $+functions[_bootctl_$cmd] )); then _bootctl_$cmd else _message "no more options" fi fi } _arguments \ {-h,--help}'[Prints a short help text and exits.]' \ '--version[Prints a short version string and exits.]' \ '--path=[Path to the EFI System Partition (ESP)]:path:_directories' \ '--no-variables[Do not touch EFI variables]' \ '*::bootctl command:_bootctl_command'