blob: ce9fd134fd0ecb496a5b2b10dbc2532ed0f8aa13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/env bash
set -e
script_path=`readlink -f $0`
script_dir=`dirname $script_path`
cd "$script_dir"
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`
if [[ "$NATIVE_STYLE" -eq 1 ]]; then
./sibs-build/$platform/debug/dchat $@
else
env GTK_THEME=Adwaita:light ./sibs-build/$platform/debug/dchat $@
fi
|