summaryrefslogtreecommitdiffstats
path: root/scripts/completions/zsh/_kcmshell
blob: 4bc964c75ba256fef2dc46a7dbbc2da3d4cff6fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#compdef kcmshell=kcmshell appletproxy=appletproxy

local i resource tmp dir flags
if [ "$service" = "kcmshell" ]; then
	resource="apps";
	dir="/Settings";
	flags=":t:r";
else
	resource="data";
	dir="/kicker/applets";
	flags=":t"
fi
for i in `tde-config --path $resource| sed -e 's/:/ /g'`; do
	tmp=($i/$dir/**/*.desktop($flags))
	compadd -a tmp
done