#!/bin/bash # Copyright (C) 2007-2010 PlayOnLinux Team # Copyright (C) 2011 Pâris Quentin # 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. # This is the startup script [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" install_debfonts () # Debian tweak to avoid downloading Microsoft Fonts { if [ ! -e "$REPERTOIRE/configurations/msfonts_installed" ] && [ ! -e "$REPERTOIRE/configurations/msfonts_deb_installed" ] then DEBFONTS="/usr/share/fonts/truetype/msttcorefonts" if [ ! -d $DEBFONTS ] then rm $HOME/.PlayOnLinux/fonts/ -r 2> /dev/null rm $HOME/.PlayOnLinux/fonts 2> /dev/null rm $HOME/.PlayOnLinux/configurations/fonts_installed 2> /dev/null rm $HOME/.PlayOnLinux/configurations/msfonts_deb_installed 2> /dev/null fi if [ -d $DEBFONTS ] then rm $HOME/.PlayOnLinux/fonts/ -r 2> /dev/null rm $HOME/.PlayOnLinux/fonts 2> /dev/null rm $HOME/.PlayOnLinux/configurations/fonts_installed 2> /dev/null FONTDIR=$HOME/.PlayOnLinux/fonts/ mkdir -p $FONTDIR OLDDIR="$PWD" cd $DEBFONTS for ttf in * do ln -s $DEBFONTS/$ttf $FONTDIR/$ttf done cd $OLDDIR touch "$HOME/.PlayOnLinux/configurations/msfonts_deb_installed" fi fi } # POL / POM won't work without that construire_repertoire_personnel # Initialize link between python and bash touch "$POL_USER_ROOT/configurations/guis/index_$POL_ID" # Cleanup old gui files "$PLAYONLINUX/bash/delete_gui_files" & # Plugins install_plugins # Root if [ `id -u` = 0 ] then POL_SetupWindow_Init POL_SetupWindow_question "$(eval_gettext 'You are running $APPLICATION_TITLE as root.\n\n')$(eval_gettext "Please note that it is very dangerous to run Wine programs as root: you are vulnerable to viruses and other bad stuff.\n\n")$(eval_gettext "PlayOnLinux is not reponsable for any damage to your system.\n\n")$(eval_gettext 'Are you sure you want to start $APPLICATION_TITLE?')" "$(eval_gettext "Warning!")" POL_SetupWindow_Close if [ "$APP_ANSWER" = "FALSE" ] then exit fi fi install_debfonts # First use ? [ "$(POL_Config_Read FIRST_USE)" = "" ] && bash "$PLAYONLINUX/bash/first_use"