Even an everyday user may wish to install the latest version from GitHub. It's easy:
- Clone the repository to a folder of your choice.
git clone https://github.com/gTile/gTile.git
- Build and install
You will need to install
Bazel on your
system to run the build tool. Then, you can run the installation script to
install to $HOME/.local/share/gnome-shell/extensions/gTile@vibou
.
bazel run :install-extension
Generally,
- Code
- Run
glib-compile-schemas schemas
(if you modified the schema) - Run the
install-extension
command above - If 2 succeeded, hit
Alt
+F2
, typer
, and hit enter.
For the most part, look at WORKSPACE
and BUILD.bazel
to inspect the
dependencies within the project.
It may not be necessary for you to run yarn, but it may help your editor with code completion. Historically, bazel gave errors if you did not run this command first, but not anymore:
bazel run @nodejs//:yarn
To add a new "dev" dependency:
bazel run @nodejs//:yarn -- add --dev "@bazel/karma"