diff options
-rw-r--r-- | css/style.css | 9 | ||||
-rw-r--r-- | fonts/Lato License.txt | 3 | ||||
-rw-r--r-- | fonts/Lato-Regular.ttf | bin | 0 -> 656568 bytes | |||
-rwxr-xr-x | run.sh | 8 |
4 files changed, 20 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css index 5ea60be..ccdb8b8 100644 --- a/css/style.css +++ b/css/style.css @@ -1,3 +1,7 @@ +* { + font-family: Lato; +} + window { background-color: #2f3136; } @@ -129,6 +133,11 @@ separator { .chat-message-username { color: #0fc0fc; + font-size: 14px; +} + +.chat-message-text { + font-size: 13px; } textview { diff --git a/fonts/Lato License.txt b/fonts/Lato License.txt new file mode 100644 index 0000000..784a6a3 --- /dev/null +++ b/fonts/Lato License.txt @@ -0,0 +1,3 @@ +The Lato font family is available as a free download under the SIL Open Font License 1.1 (https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL). +The fonts can be used without any limitations for commercial and non-commercial purposes. +They can be also freely modified if the terms of the license are observed. diff --git a/fonts/Lato-Regular.ttf b/fonts/Lato-Regular.ttf Binary files differnew file mode 100644 index 0000000..0f3d0f8 --- /dev/null +++ b/fonts/Lato-Regular.ttf @@ -1,3 +1,11 @@ #!/usr/bin/env bash +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 env GTK_THEME="css/style.css" ./sibs-build/debug/dchat |