fish-shell/share/functions/__fish_systemctl_services.fish

6 lines
162 B
Fish
Raw Normal View History

function __fish_systemctl_services
if type -q systemctl
systemctl list-unit-files --no-legend --type=service ^/dev/null | cut -f 1 -d ' '
end
end