A fork of the Materia GTK theme.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 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