1
0
mirror of https://github.com/Mayccoll/Gogh.git synced 2023-08-10 21:12:46 +03:00
Gogh/freya.sh

84 lines
3.2 KiB
Bash
Raw Normal View History

2015-04-13 04:10:49 +03:00
#!/bin/bash
# ==================== CONFIG THIS ========================================= #
2015-07-24 16:07:34 +03:00
COLOR_01="#073642" # HOST
COLOR_02="#DC322F" # SYNTAX_STRING
COLOR_03="#859900" # COMMAND
COLOR_04="#B58900" # COMMAND_COLOR2
COLOR_05="#268BD2" # PATH
COLOR_06="#EC0048" # SYNTAX_VAR
COLOR_07="#2AA198" # PROMP
COLOR_08="#94A3A5"
COLOR_09="#586E75"
COLOR_10="#CB4B16" # COMMAND_ERROR
COLOR_11="#859900" # EXEC
COLOR_12="#B58900"
COLOR_13="#268BD2" # FOLDER
COLOR_14="#D33682"
COLOR_15="#2AA198"
COLOR_16="#EEEEEE"
BACKGROUND_COLOR="#2D363A" # Background Color
2015-04-13 04:10:49 +03:00
FOREGROUND_COLOR="#94A3A5" # Text
# ===================== END CONFIG ======================================= #
# |
# | Convert RGB to gnome colors
# | ===========================================
function gnome_color () {
2015-07-24 16:07:34 +03:00
2015-04-13 04:10:49 +03:00
AA=${1:1:2}
BB=${1:3:2}
CC=${1:5:2}
echo "#${AA}${AA}${BB}${BB}${CC}${CC}"
}
# |
2015-07-24 16:07:34 +03:00
# | Check for OS and decide how to apply
2015-04-13 04:10:49 +03:00
# | ===========================================
2015-07-24 16:07:34 +03:00
if [ $(lsb_release -c -s) == "freya" ]; then
# |
# | Apply Variables
# | ===========================================
gsettings set org.pantheon.terminal.settings background "${BACKGROUND_COLOR}"
gsettings set org.pantheon.terminal.settings foreground "${FOREGROUND_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}"
else
# |
# | Set gnome Variables
# | ===========================================
BACKGROUND_COLOR=$(gnome_color $BACKGROUND_COLOR)
FOREGROUND_COLOR=$(gnome_color $FOREGROUND_COLOR)
COLOR_01=$(gnome_color $COLOR_01)
COLOR_02=$(gnome_color $COLOR_02)
COLOR_03=$(gnome_color $COLOR_03)
COLOR_04=$(gnome_color $COLOR_04)
COLOR_05=$(gnome_color $COLOR_05)
COLOR_06=$(gnome_color $COLOR_06)
COLOR_07=$(gnome_color $COLOR_07)
COLOR_08=$(gnome_color $COLOR_08)
COLOR_09=$(gnome_color $COLOR_09)
COLOR_10=$(gnome_color $COLOR_10)
COLOR_11=$(gnome_color $COLOR_11)
COLOR_12=$(gnome_color $COLOR_12)
COLOR_13=$(gnome_color $COLOR_13)
COLOR_14=$(gnome_color $COLOR_14)
COLOR_15=$(gnome_color $COLOR_15)
COLOR_16=$(gnome_color $COLOR_16)
# |
# | Apply Variables
# | ===========================================
gconftool-2 --set /apps/gnome-terminal/profiles/Default/use_theme_background --type bool false
gconftool-2 --set /apps/gnome-terminal/profiles/Default/use_theme_colors --type bool false
gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/background_color "${BACKGROUND_COLOR}"
gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/foreground_color "${FOREGROUND_COLOR}"
gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/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}"
fi