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

 snapshot.sh

View raw Download
text/x-shellscript • 287 B
Bourne-Again shell script, ASCII text executable
        
            
1
#!/usr/bin/env 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