Compare commits

..

No commits in common. "75e63cad03038bb1e9f26f5751d366e571b29f06" and "3f42f1d9d1444be6f5a98cc839601ca931ef9039" have entirely different histories.

2 changed files with 6 additions and 7 deletions

View File

@ -2,19 +2,18 @@
## building ## building
To build this on GNU/Linux To build this on GNU/Linux
### 1.Install dependencies for your distro: ### 1.Install dependencies for your distro:
Everything, starting with ``$`` should be run as usual user without that sign. ``#`` in the start indicated that root is necessary.
#### Arch linux: #### Arch linux:
``# sudo pacman -S glib2 rust`` ``sudo pacman -S glib2 rust``
#### Debian and derivatives: #### Debian and derivatives:
``# sudo apt install libglib2.0-0 cargo`` ``sudo apt install libglib2.0-0 cargo``
### 2.Build it: ### 2.Build it:
``` ```
$ chmod +x ./build.sh chmod +x ./build.sh
$ ./build.sh ./build.sh
``` ```
then, run it: then, run it:
``` ```
$ cargo run cargo run
``` ```
#### Windows #### Windows
Windows sucks. Windows sucks.

View File

@ -2,7 +2,7 @@
#Compile schemas for gtk settings #Compile schemas for gtk settings
mkdir -p $HOME/.local/share/glib-2.0/schemas mkdir -p $HOME/.local/share/glib-2.0/schemas
cp org.foxarmy.learn-hieroglyph.gschema.xml $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/ glib-compile-schemas $HOME/.local/share/glib-2.0/schemas/
#building #building