aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_systemd_machine_images.fish
blob: 8ff0a69d146eb9cbedc087561148e6abd2ddd628 (plain)
1
2
3
4
5
# Like for running machines, I'm assuming machinectl doesn't allow spaces in image names
# This does not include the special image ".host" since it isn't valid for most operations
function __fish_systemd_machine_images
	machinectl --no-legend --no-pager list-images | while read -l a b; echo $a; end
end