mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 04:42:39 +08:00
33c0d93b20
It should now support all unit types mentioned in systemd.unit(5)
10 lines
283 B
Fish
10 lines
283 B
Fish
function __fish_systemctl_targets
|
|
if type -q systemctl
|
|
if __fish_contains_opt user
|
|
systemctl --user list-unit-files --no-legend --type=target ^/dev/null | cut -f 1 -d ' '
|
|
else
|
|
systemctl list-unit-files --no-legend --type=target ^/dev/null | cut -f 1 -d ' '
|
|
end
|
|
end
|
|
end
|