Compare commits
1 Commits
f8c762c417
...
4fff09c353
Author | SHA1 | Date | |
---|---|---|---|
4fff09c353 |
@ -2,22 +2,14 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
terminal=/org/gnome/terminal/legacy
|
terminal=/org/gnome/terminal/legacy/
|
||||||
profile=$terminal/profiles:/`dconf list $terminal/profiles:/`
|
profile=${terminal}profiles:/`dconf list $terminal/profiles:/`
|
||||||
|
|
||||||
dconf_write_profile_value() {
|
dconf write ${terminal}default-show-menubar false
|
||||||
dconf write `echo $profile`$1 $2
|
dconf write ${profile}visible-name "'Fresh'"
|
||||||
}
|
dconf write ${profile}scrollbar-policy "'never'"
|
||||||
|
dconf write ${profile}use-theme-colors false
|
||||||
dconf_write_profile_string() {
|
dconf write ${profile}use-theme-transparency false
|
||||||
dconf write `echo $profile`$1 "'$2'"
|
dconf write ${profile}use-transparent-background false
|
||||||
}
|
dconf write ${profile}background-color "'rgb(0,0,0)'"
|
||||||
|
dconf write ${profile}foreground-color "'rgb(170,170,170)'"
|
||||||
dconf write $terminal/default-show-menubar false
|
|
||||||
dconf_write_profile_string visible-name Fresh
|
|
||||||
dconf_write_profile_string scrollbar-policy never
|
|
||||||
dconf_write_profile_value use-theme-colors false
|
|
||||||
dconf_write_profile_value use-theme-transparency false
|
|
||||||
dconf_write_profile_value use-transparent-background false
|
|
||||||
dconf_write_profile_string background-color "rgb(0,0,0)"
|
|
||||||
dconf_write_profile_string foreground-color "rgb(170,170,170)"
|
|
||||||
|
Reference in New Issue
Block a user