mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
15 lines
876 B
Bash
15 lines
876 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Save this script into set_colors.sh, make this file executable and run it:
|
||
|
#
|
||
|
# $ chmod +x set_colors.sh
|
||
|
# $ ./set_colors.sh
|
||
|
#
|
||
|
# Alternatively copy lines below directly into your shell.
|
||
|
|
||
|
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 '#0d0d19192626'
|
||
|
gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/foreground_color '#d9d9e6e6f2f2'
|
||
|
gconftool-2 -s -t string /apps/gnome-terminal/profiles/Default/palette '#000000000000:#b8b87a7a7a7a:#7a7ab8b87a7a:#b8b8b8b87a7a:#7a7a7a7ab8b8:#b8b87a7ab8b8:#7a7ab8b8b8b8:#d9d9d9d9d9d9:#262626262626:#dbdbbdbdbdbd:#bdbddbdbbdbd:#dbdbdbdbbdbd:#bdbdbdbddbdb:#dbdbbdbddbdb:#bdbddbdbdbdb:#ffffffffffff'
|