aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_systemctl_services.fish
blob: 847276b77f17390dda8c174ded5b70cb9385501b (plain)
1
2
3
4
5
6
7
8
9
function __fish_systemctl_services
	if type -q systemctl
		if __fish_contains_opt user
			systemctl --user list-unit-files --no-legend --type=service ^/dev/null $argv | cut -f 1 -d ' '
		else
			systemctl list-unit-files --no-legend --type=service ^/dev/null $argv | cut -f 1 -d ' '
		end
	end
end