aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_systemctl_services.fish
blob: f48cb324921a9fa5b5da7afb1981fe0283e76786 (plain)
1
2
3
4
5
function __fish_systemctl_services
    if type -q systemctl
        systemctl list-unit-files --no-legend --type=service ^/dev/null | cut -f 1 -d ' '
    end
end