2014-04-20 06:44:09 +08:00
|
|
|
function __fish_systemctl_services
|
2015-02-19 21:22:21 +08:00
|
|
|
if type -q systemctl
|
|
|
|
if __fish_contains_opt user
|
2015-02-19 23:29:41 +08:00
|
|
|
systemctl --user list-unit-files --no-legend --type=service ^/dev/null $argv | cut -f 1 -d ' '
|
2015-09-18 00:16:56 +08:00
|
|
|
systemctl --user list-units --state=loaded --no-legend --type=service ^/dev/null | cut -f 1 -d ' '
|
2015-02-19 21:22:21 +08:00
|
|
|
else
|
2015-09-18 00:16:56 +08:00
|
|
|
# list-unit-files will also show disabled units
|
2015-02-19 23:29:41 +08:00
|
|
|
systemctl list-unit-files --no-legend --type=service ^/dev/null $argv | cut -f 1 -d ' '
|
2015-09-18 00:16:56 +08:00
|
|
|
# list-units will not show disabled units but will show instances (like wpa_supplicant@wlan0.service)
|
|
|
|
systemctl list-units --state=loaded --no-legend --type=service ^/dev/null | cut -f 1 -d ' '
|
2015-02-19 21:22:21 +08:00
|
|
|
end
|
|
|
|
end
|
2014-04-20 06:44:09 +08:00
|
|
|
end
|