fish-shell/share/functions/__fish_systemctl_mounts.fish
2015-03-06 23:05:24 -08:00

9 lines
280 B
Fish

function __fish_systemctl_mounts
if type -q systemctl
if __fish_contains_opt user
systemctl --user list-unit-files --no-legend --type=mount ^/dev/null | cut -f 1 -d ' '
else
systemctl list-unit-files --no-legend --type=mount ^/dev/null | cut -f 1 -d ' '
end
end
end