2014-04-20 06:44:09 +08:00
|
|
|
function __fish_systemctl_services
|
2016-11-28 13:27:22 +08:00
|
|
|
if type -q systemctl
|
|
|
|
if __fish_contains_opt user
|
2018-04-02 04:42:38 +08:00
|
|
|
systemctl --user list-unit-files --no-legend --type=service 2>/dev/null $argv | cut -f 1 -d ' '
|
|
|
|
systemctl --user list-units --state=loaded --no-legend --type=service 2>/dev/null | cut -f 1 -d ' '
|
2016-11-28 13:27:22 +08:00
|
|
|
else
|
|
|
|
# list-unit-files will also show disabled units
|
2018-04-02 04:42:38 +08:00
|
|
|
systemctl list-unit-files --no-legend --type=service 2>/dev/null $argv | cut -f 1 -d ' '
|
2016-11-28 13:27:22 +08:00
|
|
|
# list-units will not show disabled units but will show instances (like wpa_supplicant@wlan0.service)
|
2018-04-02 04:42:38 +08:00
|
|
|
systemctl list-units --state=loaded --no-legend --type=service 2>/dev/null | cut -f 1 -d ' '
|
2016-11-28 13:27:22 +08:00
|
|
|
end
|
|
|
|
end
|
2014-04-20 06:44:09 +08:00
|
|
|
end
|