You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/scripts/completions/zsh/_tdecmshell

17 lines
357 B

#compdef tdecmshell=tdecmshell appletproxy=appletproxy
local i resource tmp dir flags
if [ "$service" = "tdecmshell" ]; 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