A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 test.sh

View raw Download
text/x-shellscript • 403 B
Bourne-Again shell script, ASCII text executable
        
            
1
#!/bin/bash
2
#
3
# Create a snapshot for comparison with the latest development version.
4
#
5
set -ueo pipefail
6
7
BUILD_DIR="build_snapshot"
8
PREFIX="$HOME/.local"
9
THEME_NAME="MateriaSnapshot"
10
11
if [[ -d "$BUILD_DIR" ]]; then
12
meson "$BUILD_DIR" --prefix="$PREFIX" -Dtheme_name="$THEME_NAME" --reconfigure
13
else
14
meson "$BUILD_DIR" --prefix="$PREFIX" -Dtheme_name="$THEME_NAME"
15
fi
16
ninja -C "$BUILD_DIR" install
17