#!/usr/bin/env sh
#
# Copyright (C) 2021 Alexandros Theodotou <alex at zrythm dot org>
#
# This file is part of Zrythm
#
# Zrythm is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Zrythm 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Zrythm.  If not, see <https://www.gnu.org/licenses/>.

export GSETTINGS_SCHEMA_DIR=/usr/local/share/glib-2.0/schemas

# if not first run, set language so that pre-startup
# output is localized to the user's choice instead
# of system's locale
schema_prefix="org.zrythm.Zrythm"
cmd="gsettings get $schema_prefix.preferences.ui.general language"
$cmd > /dev/null
first_run=`gsettings get $schema_prefix.general first-run`
if [ $? = 0 ] && [ $first_run = "false" ]; then
  preferences_lang=`$cmd | sed -e "s|'||g"`
  lang=`locale -a | grep $preferences_lang | head -n 1`
  export LANG="$lang"
  export LC_MESSAGES="$lang"
fi

/usr/local/bin/zrythm "$@"
