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 • 279 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
THEME_NAME="MateriaSnapshot"
9
10
if [[ ! -d "$BUILD_DIR" ]]; then
11
meson "$BUILD_DIR" -Dtheme_name="$THEME_NAME"
12
fi
13
meson install -C "$BUILD_DIR"
14