Last active
April 6, 2018 20:04
-
-
Save cassinaj/3df2a189ade6cde564db to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ubuntu 16.04 has changed everything again ... | |
# if more than one profile exist, set profile to the desired profile id | |
profile="$(dconf list /org/gnome/terminal/legacy/profiles:/ | sed 's./..')" | |
dconf write /org/gnome/terminal/legacy/profiles:/$profile/palette "['#3F3F3F3F3F3F' | |
, '#CCCC93939393', '#23227F7EBFBF', '#656553537070', '#BABA2F2E5958', '#BABA2F2E5958', '#8C8CD0D0D3D3', '#DCDCDCDCCCCC', '#3F3F3F3F3F3F', '#CCCC93939393', '#23227F7EBFBF', '#656553537070', '#BABA2F2E5958', '#1F1F7171ABAB', '#8C8CD0D0D3D3', '#DCDCDCDCCCCC']" | |
# hide the menu bar | |
gsettings set org.gnome.Terminal.Legacy.Settings default-show-menubar false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment