13 lines
392 B
Bash
Executable File
13 lines
392 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
BOLD="$(tput bold)"
|
|
BLUE="$(tput setaf 4)"
|
|
NC="$(tput sgr0)"
|
|
|
|
printf "%b" "${BOLD}${BLUE}--- Building theme ---${NC}\n"
|
|
mkdir -p dist/themes && ./oomox-gtk-theme/change_color.sh -t dist/themes -o tokyonight -d true ./tokyonight
|
|
|
|
printf "%b" "${BOLD}${BLUE}--- Building icon ---s${NC}\n"
|
|
mkdir -p dist/icons && ./icons.sh -d dist/icons/tokyonight -o tokyonight ./tokyonight
|