debian: Wrap squeekboard in theme selector
This works around https://source.puri.sm/Librem5/squeekboard/issues/151 by providing a dark style to match the dark style of the layouts.
This commit is contained in:
15
tools/squeekboard.in
Executable file
15
tools/squeekboard.in
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# Override default theme but allow selecting the replacement
|
||||
export GTK_THEME="Adwaita:dark"
|
||||
CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
|
||||
DIRS="${CONFIG_HOME} $(set -f; IFS=:; printf '%s\n' $XDG_CONFIG_DIRS)"
|
||||
for DIR in ${DIRS}; do
|
||||
if cat $DIR/squeekboard/gtk_theme 2> /dev/null; then
|
||||
export GTK_THEME="$(cat $DIR/squeekboard/gtk_theme 2> /dev/null)"
|
||||
break;
|
||||
fi;
|
||||
done;
|
||||
|
||||
exec @bindir@/squeekboard-real
|
||||
Reference in New Issue
Block a user