10 lines
247 B
Bash
10 lines
247 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#Compile schemas for gtk settings
|
||
|
mkdir -p $HOME/.local/share/glib-2.0/schemas
|
||
|
cp org.gtk_rs.Settings1.gschema.xml $HOME/.local/share/glib-2.0/schemas/
|
||
|
glib-compile-schemas $HOME/.local/share/glib-2.0/schemas/
|
||
|
|
||
|
#building
|
||
|
cargo build
|