make gnome settings more declarative
This commit is contained in:
parent
b229b957f5
commit
66fecb4dcf
3 changed files with 12 additions and 7 deletions
|
@ -34,3 +34,6 @@ vscodium
|
|||
|
||||
# fish autogenerated functions
|
||||
**/_*.fish
|
||||
|
||||
# gnome settings
|
||||
dconf.ini
|
||||
|
|
|
@ -1,8 +1,3 @@
|
|||
{{- if and (eq .chezmoi.os "linux") (not .is_wsl) -}}
|
||||
#!/bin/sh
|
||||
|
||||
dconf load /org/gnome/ <<EOF
|
||||
|
||||
[desktop/input-sources]
|
||||
current=uint32 0
|
||||
mru-sources=[('xkb', 'us'), ('xkb', 'ch+fr')]
|
||||
|
@ -53,9 +48,8 @@ palette=['#51576d', '#e78284', '#a6d189', '#e5c890', '#8caaee', '#f4b8e4', '#81c
|
|||
use-system-font=false
|
||||
use-theme-colors=false
|
||||
visible-name='nezia'
|
||||
custom-command='tmux'
|
||||
|
||||
[tweaks]
|
||||
show-extensions-notice=false
|
||||
|
||||
EOF
|
||||
{{ end }}
|
8
run_onchange_40_configure_gnome.sh.tmpl
Normal file
8
run_onchange_40_configure_gnome.sh.tmpl
Normal file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
{{ if and (eq .chezmoi.os "linux") (not .is_wsl) -}}
|
||||
|
||||
dconf load /org/gnome/ < {{ joinPath .chezmoi.sourceDir "dconf.ini" | quote }}
|
||||
|
||||
{{ end }}
|
||||
|
Loading…
Reference in a new issue