mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-27 06:31:19 -03:00
12 lines
339 B
Fish
12 lines
339 B
Fish
# localization: skip(private)
|
|
#
|
|
# It seems machinectl will eliminate spaces from machine names so we don't need to handle that
|
|
function __fish_systemd_machines
|
|
# We don't want to complete with ANSI color codes
|
|
set -lu SYSTEMD_COLORS
|
|
|
|
machinectl --no-legend --no-pager list --all | while read -l a b
|
|
echo $a
|
|
end
|
|
end
|