|
#!/bin/bash
|
|
|
|
#Compile schemas for gtk settings
|
|
mkdir -p $HOME/.local/share/glib-2.0/schemas
|
|
cp org.foxarmy.learn-hieroglyph.gschema.xml $HOME/.local/share/glib-2.0/schemas/
|
|
glib-compile-schemas $HOME/.local/share/glib-2.0/schemas/
|
|
|
|
#building
|
|
cargo build
|