32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
## Copyright (C) 2020-2022 Aditya Shakya <adi1090x@gmail.com>
|
|
## Everyone is permitted to copy and distribute copies of this file under GNU-GPL3
|
|
|
|
## Set GTK Themes, Icons, Cursor and Fonts
|
|
|
|
# you can set your icons, themes and cursor via
|
|
# dconf editor
|
|
|
|
# cursor is also in wayfire.ini
|
|
|
|
# /org/gnome/desktop/interface
|
|
|
|
# or run these commands
|
|
|
|
# https://github.com/WayfireWM/wayfire/wiki/Tips-&-Tricks#gtk-theme-not-working
|
|
|
|
# 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" | sed 's/.*\s*=\s*//')"
|
|
icon_theme="$(grep 'gtk-icon-theme-name' "$config" | sed 's/.*\s*=\s*//')"
|
|
cursor_theme="$(grep 'gtk-cursor-theme-name' "$config" | sed 's/.*\s*=\s*//')"
|
|
font_name="$(grep 'gtk-font-name' "$config" | sed 's/.*\s*=\s*//')"
|
|
gsettings set "$gnome_schema" gtk-theme "$gtk_theme"
|
|
gsettings set "$gnome_schema" icon-theme "$icon_theme"
|
|
gsettings set "$gnome_schema" cursor-theme "$cursor_theme"
|
|
gsettings set "$gnome_schema" font-name "$font_name"
|