diff options
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +set -e + +if [ "$#" -ne 1 ]; then + echo "Expected 1 argument, a home path" + exit 1 +fi + +script_path=`readlink -f $0` +script_dir=`dirname $script_path` +cd "$script_dir" + +HOME="$1" +if [ ! -f ~/.local/share/fonts/Lato-Regular.ttf ]; then + mkdir -p ~/.local/share/fonts + cp ./fonts/Lato-Regular.ttf ~/.local/share/fonts/Lato-Regular.ttf + fc-cache +fi +if [ ! -f ~/.local/share/fonts/Lato-Bold.ttf ]; then + mkdir -p ~/.local/share/fonts + cp ./fonts/Lato-Bold.ttf ~/.local/share/fonts/Lato-Bold.ttf + fc-cache +fi +platform=`sibs platform` +env GTK_THEME=Adwaita:light gdb ./sibs-build/$platform/debug/dchat
\ No newline at end of file |