/usr/share/zsh/site-functions
NameSizeModeActions
_bootctl29100644editdlrm
_busctl95870644editdlrm
_coredumpctl19350644editdlrm
_curl149300644editdlrm
_firewalld207340644editdlrm
_hostnamectl27930644editdlrm
_imunify360_agent153830644editdlrm
_journalctl71940644editdlrm
_kernel-install7790644editdlrm
_localectl37730644editdlrm
_loginctl64000644editdlrm
_machinectl43600644editdlrm
_p11-kit9810644editdlrm
_podman78260644editdlrm
_sd_hosts_or_user_at_host1280644editdlrm
_sd_machines5050644editdlrm
_sd_outputmodes3180644editdlrm
_sd_unit_files2630644editdlrm
_systemctl199640644editdlrm
_systemd38480644editdlrm
_systemd-analyze56300644editdlrm
_systemd-delta6330644editdlrm
_systemd-inhibit11790644editdlrm
_systemd-nspawn47250644editdlrm
_systemd-path3300644editdlrm
_systemd-run43560644editdlrm
_systemd-tmpfiles7440644editdlrm
_timedatectl20500644editdlrm
_trust30690644editdlrm
_udevadm82530644editdlrm
Edit: /usr/share/zsh/site-functions/_systemd-inhibit (1179B)
#compdef systemd-inhibit # SPDX-License-Identifier: LGPL-2.1-or-later (( $+functions[_systemd-inhibit_commands] )) || _systemd-inhibit_commands(){ if (( CURRENT == 1 )); then compset -q _normal else local n=${words[(b:2:i)[^-]*]} if (( n <= CURRENT )); then compset -n $n _alternative \ 'files:file:_files' \ 'commands:command:_normal' && return 0 fi _default fi } (( $+functions[_systemd-inhibit_what] )) || _systemd-inhibit_what() { local _inhibit _inhibit=(shutdown sleep idle handle-power-key handle-suspend-key handle-hibernate-key handle-lid-switch) _values -s : "${_inhibit[@]}" } _arguments \ {-h,--help}'[Show this help]' \ '--version[Show package version]' \ '--what=[Operations to inhibit]:options:_systemd-inhibit_what' \ '--who=[A descriptive string who is inhibiting]:who is inhibiting:' \ '--why=[A descriptive string why is being inhibited]:reason for the lock:' \ '--mode=[One of block or delay]:lock mode:( block delay )' \ '--list[List active inhibitors]' \ '*:commands:_systemd-inhibit_commands'