Initial
This commit is contained in:
commit
c8734e660a
392 changed files with 21043 additions and 0 deletions
15
.config/sway/scripts/import-gsettings
Normal file
15
.config/sway/scripts/import-gsettings
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/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'
|
||||
Loading…
Add table
Add a link
Reference in a new issue