Files
squeekboard/tools/squeekboard.in
Dorota Czaplejewicz 0bfaa8cd7a 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.
2019-11-13 14:07:23 +00:00

16 lines
433 B
Bash
Executable File

#!/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