1
1
Fork 0

Include some GNOME settings

This commit is contained in:
Jonathan Schleifer 2023-04-29 23:06:05 +00:00
parent 3fea53979b
commit 27052f4369
2 changed files with 26 additions and 0 deletions

16
dconf/gnome-terminal Normal file
View file

@ -0,0 +1,16 @@
[legacy/profiles:/:b1dcc9dd-5262-4d8d-a863-c897e6d979b9]
background-color='rgb(0,0,0)'
background-transparency-percent=10
bold-color='rgb(255,255,255)'
bold-color-same-as-fg=false
bold-is-bright=true
cursor-background-color='rgb(255,199,0)'
cursor-colors-set=true
cursor-foreground-color='rgb(93,0,0)'
foreground-color='rgb(224,224,224)'
highlight-background-color='rgb(0,88,119)'
highlight-colors-set=true
highlight-foreground-color='rgb(255,255,255)'
palette=['rgb(23,20,33)', 'rgb(192,28,40)', 'rgb(38,162,105)', 'rgb(162,115,76)', 'rgb(18,72,139)', 'rgb(163,71,186)', 'rgb(42,161,179)', 'rgb(208,207,204)', 'rgb(94,92,100)', 'rgb(246,97,81)', 'rgb(51,209,122)', 'rgb(233,173,12)', 'rgb(42,123,222)', 'rgb(192,97,203)', 'rgb(51,199,222)', 'rgb(255,255,255)']
use-theme-colors=false
use-transparent-background=true

View file

@ -69,6 +69,16 @@ if have ssh; then
link_file ssh/config .ssh/config ../ link_file ssh/config .ssh/config ../
fi fi
if [ "$XDG_SESSION_DESKTOP" = "gnome" ]; then
gsettings set org.gnome.desktop.interface color-scheme prefer-dark
gsettings set org.gnome.desktop.interface cursor-blink false
gsettings set org.gnome.desktop.interface monospace-font-name 'Cascadia Mono 10'
gsettings set org.gnome.desktop.wm.preferences button-layout appmenu:minimize,close
gsettings set org.gnome.mutter attach-modal-dialogs false
dconf load /org/gnome/terminal/ <dconf/gnome-terminal
fi
if test x"$(uname -s)" = x"Darwin"; then if test x"$(uname -s)" = x"Darwin"; then
for i in "Keyboard Layouts/"*; do for i in "Keyboard Layouts/"*; do
dest="$HOME/Library/$i" dest="$HOME/Library/$i"