2014-04-19 22:44:09 +00:00
|
|
|
function __fish_systemctl_services
|
2015-02-19 13:22:21 +00:00
|
|
|
if type -q systemctl
|
|
|
|
if __fish_contains_opt user
|
2015-02-19 15:29:41 +00:00
|
|
|
systemctl --user list-unit-files --no-legend --type=service ^/dev/null $argv | cut -f 1 -d ' '
|
2015-09-17 16:16:56 +00:00
|
|
|
systemctl --user list-units --state=loaded --no-legend --type=service ^/dev/null | cut -f 1 -d ' '
|
2015-02-19 13:22:21 +00:00
|
|
|
else
|
2015-09-17 16:16:56 +00:00
|
|
|
# list-unit-files will also show disabled units
|
2015-02-19 15:29:41 +00:00
|
|
|
systemctl list-unit-files --no-legend --type=service ^/dev/null $argv | cut -f 1 -d ' '
|
2015-09-17 16:16:56 +00: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 13:22:21 +00:00
|
|
|
end
|
|
|
|
end
|
2014-04-19 22:44:09 +00:00
|
|
|
end
|