mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
apply-colors.sh: added error handling message to gconftools
This commit is contained in:
parent
9998a304e2
commit
feeaddef1f
@ -175,7 +175,17 @@ else
|
||||
fi
|
||||
|
||||
# Fallback for Gnome 2 and early Gnome 3
|
||||
[[ -z "$GCONFTOOL" ]] && GCONFTOOL=gconftool
|
||||
|
||||
# error handling on gconftool
|
||||
if [[ -z "$GCONFTOOL" ]]; then
|
||||
GCONFTOOL=$(which gconftool 2>/dev/null)
|
||||
if [[ "$?" -ne 0 ]]; then
|
||||
echo "Error gconftool not found!"
|
||||
echo "Possible fix, enter the following and run again:"
|
||||
echo "export GCONFTOOL=/path/to/gconftool/"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
[[ -z "$BASE_KEY" ]] && BASE_KEY=/apps/gnome-terminal/profiles
|
||||
|
||||
PROFILE_KEY="$BASE_KEY/$PROFILE_SLUG"
|
||||
|
Loading…
Reference in New Issue
Block a user