Custom dconf-dump that skips background settings

This commit is contained in:
Sage Vaillancourt 2024-02-18 01:15:03 -05:00
parent 1ddd70cad6
commit fda3a62729
1 changed files with 18 additions and 1 deletions

View File

@ -75,9 +75,26 @@ fi
source ~/.shell_aliases
source ~/.zsh_local
function dconf-dump {
local ignore_section=false
dconf dump / | while read -r line; do
if $ignore_section; then
if [[ "$line" == "["* ]]; then
ignore_section=false
fi
else
if [[ "$line" == "[org/gnome/desktop/background]" ]]; then
ignore_section=true
else
echo "$line"
fi
fi
done
}
function push-dconf {
if command -v scpace &> /dev/null; then
dconf dump / > /tmp/dconf-dump || return 1
dconf-dump > /tmp/dconf-dump || return 1
scp -P 11275 /tmp/dconf-dump 'sage@sagev.space:~/dconf-dump'
rm /tmp/dconf-dump
else