aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_systemctl_swaps.fish
blob: 57df436763379e2beae48b6f17f43b5692a12f00 (plain)
1
2
3
4
5
6
7
8
9
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