mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Merge pull request #73 from lewer/mate-terminal
add support for mate-terminal
This commit is contained in:
commit
b33c95582a
120
apply-colors.sh
120
apply-colors.sh
@ -12,6 +12,48 @@ function gnome_color () {
|
|||||||
echo "#${AA}${AA}${BB}${BB}${CC}${CC}"
|
echo "#${AA}${AA}${BB}${BB}${CC}${CC}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dset() {
|
||||||
|
local key="$1"; shift
|
||||||
|
local val="$1"; shift
|
||||||
|
|
||||||
|
if [[ "$type" == "string" ]]; then
|
||||||
|
val="'$val'"
|
||||||
|
fi
|
||||||
|
|
||||||
|
"$DCONF" write "$PROFILE_KEY/$key" "$val"
|
||||||
|
}
|
||||||
|
|
||||||
|
# because dconf still doesn't have "append"
|
||||||
|
dlist_append() {
|
||||||
|
local key="$1"; shift
|
||||||
|
local val="$1"; shift
|
||||||
|
|
||||||
|
local entries="$(
|
||||||
|
{
|
||||||
|
"$DCONF" read "$key" | tr -d '[]' | tr , "\n" | fgrep -v "$val"
|
||||||
|
echo "'$val'"
|
||||||
|
} | head -c-1 | tr "\n" ,
|
||||||
|
)"
|
||||||
|
|
||||||
|
"$DCONF" write "$key" "[$entries]"
|
||||||
|
}
|
||||||
|
|
||||||
|
set_theme() {
|
||||||
|
dset visible-name "'$PROFILE_NAME'"
|
||||||
|
dset background-color "'${BACKGROUND_COLOR}'"
|
||||||
|
dset foreground-color "'${FOREGROUND_COLOR}'"
|
||||||
|
if [ ! -z "${BOLD_COLOR}" ]; then
|
||||||
|
dset bold-color "'${BOLD_COLOR}'"
|
||||||
|
dset bold-color-same-as-fg "false"
|
||||||
|
else
|
||||||
|
dset bold-color "'${COLOR_08}'"
|
||||||
|
dset bold-color-same-as-fg "true"
|
||||||
|
fi
|
||||||
|
dset use-theme-colors "false"
|
||||||
|
dset use-theme-background "false"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# |
|
# |
|
||||||
# | Check for the terminal name and decide how to apply
|
# | Check for the terminal name and decide how to apply
|
||||||
# | ===========================================
|
# | ===========================================
|
||||||
@ -25,6 +67,43 @@ if [ $TERMINAL = "pantheon-terminal" ]; then
|
|||||||
gsettings set org.pantheon.terminal.settings cursor-color "${CURSOR_COLOR}"
|
gsettings set org.pantheon.terminal.settings cursor-color "${CURSOR_COLOR}"
|
||||||
gsettings set org.pantheon.terminal.settings palette "${COLOR_01}:${COLOR_02}:${COLOR_03}:${COLOR_04}:${COLOR_05}:${COLOR_06}:${COLOR_07}:${COLOR_08}:${COLOR_09}:${COLOR_10}:${COLOR_11}:${COLOR_12}:${COLOR_13}:${COLOR_14}:${COLOR_15}:${COLOR_16}"
|
gsettings set org.pantheon.terminal.settings palette "${COLOR_01}:${COLOR_02}:${COLOR_03}:${COLOR_04}:${COLOR_05}:${COLOR_06}:${COLOR_07}:${COLOR_08}:${COLOR_09}:${COLOR_10}:${COLOR_11}:${COLOR_12}:${COLOR_13}:${COLOR_14}:${COLOR_15}:${COLOR_16}"
|
||||||
|
|
||||||
|
elif [ $TERMINAL = "mate-terminal" ]; then
|
||||||
|
# |
|
||||||
|
# | Applying values on pantheon-terminal
|
||||||
|
# | ===========================================
|
||||||
|
|
||||||
|
[[ -z "$PROFILE_NAME" ]] && PROFILE_NAME="Default"
|
||||||
|
[[ -z "$PROFILE_SLUG" ]] && PROFILE_SLUG=`uuidgen`
|
||||||
|
[[ -z "$DCONF" ]] && DCONF=dconf
|
||||||
|
|
||||||
|
BASE_DIR=/org/mate/terminal
|
||||||
|
PROFILE_DIR="$BASE_DIR/profiles"
|
||||||
|
|
||||||
|
if [[ -n "`$DCONF read $BASE_DIR/global/default-profile`" ]]; then
|
||||||
|
DEFAULT_SLUG=`$DCONF read $BASE_DIR/global/default-profile | tr -d \'`
|
||||||
|
else
|
||||||
|
DEFAULT_SLUG=`$DCONF list $PROFILE_DIR/ | head -n1 | tr -d \/`
|
||||||
|
fi
|
||||||
|
|
||||||
|
DEFAULT_KEY="$PROFILE_DIR/$DEFAULT_SLUG"
|
||||||
|
PROFILE_KEY="$PROFILE_DIR/$PROFILE_SLUG"
|
||||||
|
|
||||||
|
# copy existing settings from default profile
|
||||||
|
dconf dump "$DEFAULT_KEY/" | dconf load "$PROFILE_KEY/"
|
||||||
|
|
||||||
|
# add new copy to list of profiles
|
||||||
|
dlist_append $PROFILE_DIR/list "$PROFILE_SLUG"
|
||||||
|
|
||||||
|
# add new copy to global list of profiles
|
||||||
|
dlist_append $BASE_DIR/global/profile-list "$PROFILE_SLUG"
|
||||||
|
|
||||||
|
set_theme
|
||||||
|
dset palette "'${COLOR_01}:${COLOR_02}:${COLOR_03}:${COLOR_04}:${COLOR_05}:${COLOR_06}:${COLOR_07}:${COLOR_08}:${COLOR_09}:${COLOR_10}:${COLOR_11}:${COLOR_12}:${COLOR_13}:${COLOR_14}:${COLOR_15}:${COLOR_16}'"
|
||||||
|
dset allow-bold "true"
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
|
||||||
else
|
else
|
||||||
# |
|
# |
|
||||||
# | Applying values on gnome-terminal
|
# | Applying values on gnome-terminal
|
||||||
@ -58,32 +137,6 @@ else
|
|||||||
[[ -z "$DCONF" ]] && DCONF=dconf
|
[[ -z "$DCONF" ]] && DCONF=dconf
|
||||||
[[ -z "$UUIDGEN" ]] && UUIDGEN=uuidgen
|
[[ -z "$UUIDGEN" ]] && UUIDGEN=uuidgen
|
||||||
|
|
||||||
dset() {
|
|
||||||
local key="$1"; shift
|
|
||||||
local val="$1"; shift
|
|
||||||
|
|
||||||
if [[ "$type" == "string" ]]; then
|
|
||||||
val="'$val'"
|
|
||||||
fi
|
|
||||||
|
|
||||||
"$DCONF" write "$PROFILE_KEY/$key" "$val"
|
|
||||||
}
|
|
||||||
|
|
||||||
# because dconf still doesn't have "append"
|
|
||||||
dlist_append() {
|
|
||||||
local key="$1"; shift
|
|
||||||
local val="$1"; shift
|
|
||||||
|
|
||||||
local entries="$(
|
|
||||||
{
|
|
||||||
"$DCONF" read "$key" | tr -d '[]' | tr , "\n" | fgrep -v "$val"
|
|
||||||
echo "'$val'"
|
|
||||||
} | head -c-1 | tr "\n" ,
|
|
||||||
)"
|
|
||||||
|
|
||||||
"$DCONF" write "$key" "[$entries]"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Newest versions of gnome-terminal use dconf
|
# Newest versions of gnome-terminal use dconf
|
||||||
if which "$DCONF" > /dev/null 2>&1; then
|
if which "$DCONF" > /dev/null 2>&1; then
|
||||||
[[ -z "$BASE_KEY_NEW" ]] && BASE_KEY_NEW=/org/gnome/terminal/legacy/profiles:
|
[[ -z "$BASE_KEY_NEW" ]] && BASE_KEY_NEW=/org/gnome/terminal/legacy/profiles:
|
||||||
@ -109,19 +162,8 @@ else
|
|||||||
dlist_append $BASE_KEY_NEW/list "$PROFILE_SLUG"
|
dlist_append $BASE_KEY_NEW/list "$PROFILE_SLUG"
|
||||||
|
|
||||||
# update profile values with theme options
|
# update profile values with theme options
|
||||||
dset visible-name "'$PROFILE_NAME'"
|
set_theme
|
||||||
dset palette "['${COLOR_01}', '${COLOR_02}', '${COLOR_03}', '${COLOR_04}', '${COLOR_05}', '${COLOR_06}', '${COLOR_07}', '${COLOR_08}', '${COLOR_09}', '${COLOR_10}', '${COLOR_11}', '${COLOR_12}', '${COLOR_13}', '${COLOR_14}', '${COLOR_15}', '${COLOR_16}']"
|
dset palette "['${COLOR_01}', '${COLOR_02}', '${COLOR_03}', '${COLOR_04}', '${COLOR_05}', '${COLOR_06}', '${COLOR_07}', '${COLOR_08}', '${COLOR_09}', '${COLOR_10}', '${COLOR_11}', '${COLOR_12}', '${COLOR_13}', '${COLOR_14}', '${COLOR_15}', '${COLOR_16}']"
|
||||||
dset background-color "'${BACKGROUND_COLOR}'"
|
|
||||||
dset foreground-color "'${FOREGROUND_COLOR}'"
|
|
||||||
if [ ! -z "${BOLD_COLOR}" ]; then
|
|
||||||
dset bold-color "'${BOLD_COLOR}'"
|
|
||||||
dset bold-color-same-as-fg "false"
|
|
||||||
else
|
|
||||||
dset bold-color "'${COLOR_08}'"
|
|
||||||
dset bold-color-same-as-fg "true"
|
|
||||||
fi
|
|
||||||
dset use-theme-colors "false"
|
|
||||||
dset use-theme-background "false"
|
|
||||||
|
|
||||||
unset PROFILE_NAME
|
unset PROFILE_NAME
|
||||||
unset PROFILE_SLUG
|
unset PROFILE_SLUG
|
||||||
|
Loading…
Reference in New Issue
Block a user