dotfiles/.config/sway/scripts/import-gsettings
2025-12-18 12:09:34 -03:00

15 lines
No EOL
661 B
Bash

#!/bin/sh
# usage: import-gsettings
config="${XDG_CONFIG_HOME:-$HOME/.config}/gtk-3.0/settings.ini"
if [ ! -f "$config" ]; then exit 1; fi
gnome_schema="org.gnome.desktop.interface"
gtk_theme="$(grep 'gtk-theme-name' "$config" | cut -d'=' -f2)"
icon_theme="$(grep 'gtk-icon-theme-name' "$config" | cut -d'=' -f2)"
cursor_theme="$(grep 'gtk-cursor-theme-name' "$config" | cut -d'=' -f2)"
font_name="$(grep 'gtk-font-name' "$config" | cut -d'=' -f2)"
gsettings set $gnome_schema gtk-theme 'Sweet-Dark'
gsettings set $gnome_schema icon-theme 'BeautyLine'
gsettings set $gnome_schema cursor-theme 'Sweet-cursors'
gsettings set $gnome_schema font-name 'Noto Music'