Added fix for inconsistent GTK theming
This commit is contained in:
parent
5ae45fdedc
commit
0af8bb15c0
3 changed files with 19 additions and 0 deletions
|
@ -23,3 +23,6 @@ waybar -c ~/.config/waybar/labwc >/dev/null 2>&1 &
|
|||
|
||||
# Drawer
|
||||
nwggrid-server 2>&1 &
|
||||
|
||||
# Import GTK settings
|
||||
import-gsettings
|
||||
|
|
15
airootfs/usr/local/bin/import-gsettings
Executable file
15
airootfs/usr/local/bin/import-gsettings
Executable 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" | 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"
|
|
@ -25,4 +25,5 @@ file_permissions=(
|
|||
["/usr/local/bin/choose-mirror"]="0:0:755"
|
||||
["/usr/local/bin/Installation_guide"]="0:0:755"
|
||||
["/usr/local/bin/livecd-sound"]="0:0:755"
|
||||
["/usr/local/bin/import-gsettings"]="0:0:755"
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue