fish-shell/share/functions/__fish_systemctl_swaps.fish

10 lines
277 B
Fish
Raw Normal View History

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