mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Merge pull request #323 from MisterCavespider/master
Added support for Konsole
This commit is contained in:
commit
553f8496b0
@ -130,6 +130,14 @@ case "${TERMINAL}" in
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
|
||||
konsole )
|
||||
CFGFILE="${HOME}/.config/konsolerc"
|
||||
if [[ ! -f "${CFGFILE}" ]]; then
|
||||
printf '\n%s\n' "Error: Couldn't find an existing configuration file for Konsole."
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
@ -198,6 +206,26 @@ updateFootConfig () {
|
||||
sed -i -r -e "s/^${name}=.+/${name}=${color/\#/}/g" "${config}"
|
||||
}
|
||||
|
||||
createKonsoleEntry () {
|
||||
local name="${1}"
|
||||
local color="${2}"
|
||||
set --
|
||||
set -- $(hexRGBtoDecRGB "${color}")
|
||||
R=${1}; shift; G=${1}; shift; B=${1}; shift
|
||||
|
||||
echo -e "[$name]\nColor=${R},${G},${B}\n"
|
||||
}
|
||||
|
||||
createKonsoleTriple () {
|
||||
local name="${1}"
|
||||
local colorn="${2}" # normal and faint
|
||||
local colori="${3}" # intense
|
||||
|
||||
createKonsoleEntry "${name}" "${colorn}"
|
||||
createKonsoleEntry "${name}Faint" "${colorn}"
|
||||
createKonsoleEntry "${name}Intense" "${colori}"
|
||||
}
|
||||
|
||||
convertNameAndRGBtoITerm() {
|
||||
local name="${1}"
|
||||
local color="${2}"
|
||||
@ -540,6 +568,57 @@ apply_kitty() {
|
||||
echo "Done - please reopen your kitty terminal to see the changes"
|
||||
}
|
||||
|
||||
apply_konsole() {
|
||||
# |
|
||||
# | Applying values on Konsole
|
||||
# | ===========================================
|
||||
|
||||
PARENT=$(grep -o "^DefaultProfile=.*$" ${CFGFILE} | cut -d '=' -f 2)
|
||||
if [[ -z "${PARENT}" ]]; then
|
||||
PARENT="FALLBACK/"
|
||||
fi
|
||||
|
||||
if [[ -z "${XDG_DATA_HOME:-}" ]]; then
|
||||
KDIR="${HOME}/.local/share/konsole"
|
||||
else
|
||||
KDIR="${XDG_DATA_HOME}/konsole"
|
||||
fi
|
||||
|
||||
KPROFILE="${KDIR}/${PROFILE_NAME}.profile"
|
||||
if [[ -f "${KPROFILE}" ]]; then
|
||||
echo "Profile ${PROFILE_NAME} already exists in Konsole confiuration (${KONSOLE_DIR}); Skipping ..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
touch "${KPROFILE}"
|
||||
echo -e "[Appearance]\nColorScheme=${PROFILE_NAME}\n" >> "${KPROFILE}"
|
||||
echo -e "[General]\nName=${PROFILE_NAME}\nParent=$PARENT" >> "${KPROFILE}"
|
||||
|
||||
KCOLORSCHEME="${KDIR}/${PROFILE_NAME}.colorscheme"
|
||||
if [[ -f "${KCOLORSCHEME}" ]]; then
|
||||
echo "Color Scheme ${PROFILE_NAME} already exists in Konsole confiuration (${KONSOLE_DIR}); Skipping ..."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
touch "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Background" "${BACKGROUND_COLOR}" "${BACKGROUND_COLOR}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color0" "${COLOR_01}" "${COLOR_09}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color1" "${COLOR_02}" "${COLOR_10}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color2" "${COLOR_03}" "${COLOR_11}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color3" "${COLOR_04}" "${COLOR_12}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color4" "${COLOR_05}" "${COLOR_13}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color5" "${COLOR_06}" "${COLOR_14}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color6" "${COLOR_07}" "${COLOR_15}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Color7" "${COLOR_08}" "${COLOR_16}" >> "${KCOLORSCHEME}"
|
||||
createKonsoleTriple "Foreground" "${FOREGROUND_COLOR}" "${FOREGROUND_COLOR}" >> "${KCOLORSCHEME}"
|
||||
echo "[General]" >> "${KCOLORSCHEME}"
|
||||
echo "Blur=false" >> "${KCOLORSCHEME}"
|
||||
echo "ColorRandomization=false" >> "${KCOLORSCHEME}"
|
||||
echo "Description=${PROFILE_NAME}" >> "${KCOLORSCHEME}"
|
||||
echo "Opacity=1" >> "${KCOLORSCHEME}"
|
||||
echo "Wallpaper=" >> "${KCOLORSCHEME}"
|
||||
}
|
||||
|
||||
apply_darwin() {
|
||||
# |
|
||||
# | Applying values on iTerm2
|
||||
@ -898,6 +977,10 @@ case "${TERMINAL}" in
|
||||
apply_kitty
|
||||
;;
|
||||
|
||||
konsole )
|
||||
apply_konsole
|
||||
;;
|
||||
|
||||
* )
|
||||
printf '%s\n' \
|
||||
"Unsupported terminal!" \
|
||||
@ -913,6 +996,7 @@ case "${TERMINAL}" in
|
||||
" xfce4-terminal" \
|
||||
" foot" \
|
||||
" kitty" \
|
||||
" konsole" \
|
||||
"" \
|
||||
"If you believe you have recieved this message in error," \
|
||||
"try manually setting \`TERMINAL', hint: ps -h -o comm -p \$PPID"
|
||||
|
Loading…
Reference in New Issue
Block a user