acb8657735
In some locales (namely Estonian) [A-Z] doesn't match all the letters.
63 lines
2.3 KiB
Bash
Executable File
63 lines
2.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# The Qubes OS Project, http://www.qubes-os.org
|
|
#
|
|
# Copyright (C) 2010 Joanna Rutkowska <joanna@invisiblethingslab.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
#
|
|
|
|
SRCDIR=$1
|
|
VMNAME=$2
|
|
VMTYPE=$3
|
|
if [ -z "$VMTYPE" ]; then
|
|
VMTYPE=appvms
|
|
fi
|
|
VMDIR=/var/lib/qubes/$VMTYPE/$VMNAME
|
|
APPSDIR=$VMDIR/apps
|
|
|
|
if [ $# -lt 2 ]; then
|
|
echo "usage: $0 <apps_templates_dir> <vmname> [appvms|vm-templates|servicevms]"
|
|
exit
|
|
fi
|
|
mkdir -p $APPSDIR
|
|
|
|
if [ "$SRCDIR" != "none" ]; then
|
|
echo "--> Converting Appmenu Templates..."
|
|
if [ -r "$VMDIR/whitelisted-appmenus.list" ]; then
|
|
cat $VMDIR/whitelisted-appmenus.list | xargs -I{} /usr/libexec/qubes-appmenus/convert-apptemplate2vm.sh $SRCDIR/{} $APPSDIR $VMNAME $VMDIR
|
|
else
|
|
find $SRCDIR -name "*.desktop" $CHECK_WHITELISTED -exec /usr/libexec/qubes-appmenus/convert-apptemplate2vm.sh {} $APPSDIR $VMNAME $VMDIR \;
|
|
fi
|
|
/usr/libexec/qubes-appmenus/convert-apptemplate2vm.sh /usr/share/qubes-appmenus/qubes-appmenu-select.desktop $APPSDIR $VMNAME $VMDIR
|
|
|
|
if [ "$VMTYPE" = "vm-templates" ]; then
|
|
DIR_TEMPLATE=/usr/share/qubes-appmenus/qubes-templatevm.directory.template
|
|
elif [ "$VMTYPE" = "servicevms" ]; then
|
|
DIR_TEMPLATE=/usr/share/qubes-appmenus/qubes-servicevm.directory.template
|
|
else
|
|
DIR_TEMPLATE=/usr/share/qubes-appmenus/qubes-vm.directory.template
|
|
fi
|
|
/usr/libexec/qubes-appmenus/convert-dirtemplate2vm.sh $DIR_TEMPLATE $APPSDIR/$VMNAME-vm.directory $VMNAME $VMDIR
|
|
fi
|
|
|
|
echo "--> Adding Apps to the Menu..."
|
|
LC_COLLATE=C xdg-desktop-menu install $APPSDIR/*.directory $APPSDIR/*.desktop
|
|
|
|
if [ -n "$KDE_SESSION_UID" ]; then
|
|
kbuildsycoca4
|
|
fi
|