qubes-linux-template-builder/create_apps_templates_for_templatevm.sh
2010-10-04 17:54:45 +02:00

15 lines
315 B
Bash
Executable File

#!/bin/sh
APPSORIG=$1
APPSTMPL=$2
if [ $# != 2 ]; then
echo "usage $0 <apps_orig_dir> <apps_templ_dir>"
exit 0
fi
rm -f $APPSTMPL/*
mkdir -p $APPSTMPL
find $APPSORIG -name "*.desktop" -exec appmenus/convert_app2template_for_templatevm.sh {} $APPSTMPL \;
cp appmenus/qubes-vm.directory.template $APPSTMPL