ths-scripts/ths-variables

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2009-02-15 19:50:44 +00:00
#!/bin/bash
# You would probably need to make some adjustments to variables.
# Copyright (C) 2009 Andrius Štikonas <stikonas@gmail.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, see <http://www.gnu.org/licenses/>.
2009-03-16 20:12:24 +00:00
# Settings file
THS=".ths"
# Binaries
2010-09-08 18:13:42 +01:00
SVN=`which svn 2> /dev/null`
2009-02-15 19:50:44 +00:00
DIFF=`which diff 2> /dev/null`
MSGATTRIB=`which msgattrib 2> /dev/null`
MSGFILTER=`which msgfilter 2> /dev/null`
MSGFMT=`which msgfmt 2> /dev/null`
MSGINIT=`which msginit 2> /dev/null`
MSGMERGE=`which msgmerge 2> /dev/null`
2009-02-15 19:50:44 +00:00
KDIFF3=`which kdiff3 2> /dev/null`
2009-03-16 20:12:24 +00:00
# Colors
2010-09-08 17:46:11 +01:00
RED="\033[1;31m"
GREEN="\033[1;32m"
BLUE="\033[1;34m"
2009-03-17 15:57:59 +00:00
ENDCOLOR="\033[0m"