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:
Dorota Czaplejewicz
2019-11-11 18:09:38 +00:00
parent ea4bf3de29
commit 0bfaa8cd7a
4 changed files with 18 additions and 3 deletions

15
tools/squeekboard.in Executable file
View 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