2021-04-30 01:29:39 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file contains a number of utilities for use by the home-manager tool and
|
|
|
|
# the generated Home Manager activation scripts. No guarantee is made about
|
|
|
|
# backwards or forward compatibility.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Sets up colors suitable for the `errorEcho`, `warnEcho`, and `noteEcho`
|
|
|
|
# functions.
|
|
|
|
#
|
|
|
|
# The check for terminal output and color support is heavily inspired by
|
|
|
|
# https://unix.stackexchange.com/a/10065.
|
|
|
|
#
|
|
|
|
# The setup respects the `NO_COLOR` environment variable.
|
|
|
|
function setupColors() {
|
|
|
|
normalColor=""
|
|
|
|
errorColor=""
|
|
|
|
warnColor=""
|
|
|
|
noteColor=""
|
|
|
|
|
|
|
|
# Enable colors for terminals, and allow opting out.
|
|
|
|
if [[ ! -v NO_COLOR && -t 1 ]]; then
|
|
|
|
# See if it supports colors.
|
|
|
|
local ncolors
|
2022-10-13 11:11:42 +02:00
|
|
|
ncolors=$(tput colors 2> /dev/null || echo 0)
|
2021-04-30 01:29:39 +02:00
|
|
|
|
|
|
|
if [[ -n "$ncolors" && "$ncolors" -ge 8 ]]; then
|
|
|
|
normalColor="$(tput sgr0)"
|
|
|
|
errorColor="$(tput bold)$(tput setaf 1)"
|
|
|
|
warnColor="$(tput setaf 3)"
|
|
|
|
noteColor="$(tput bold)$(tput setaf 6)"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
setupColors
|
|
|
|
|
|
|
|
function errorEcho() {
|
|
|
|
echo "${errorColor}$*${normalColor}"
|
|
|
|
}
|
|
|
|
|
|
|
|
function warnEcho() {
|
|
|
|
echo "${warnColor}$*${normalColor}"
|
|
|
|
}
|
|
|
|
|
|
|
|
function noteEcho() {
|
|
|
|
echo "${noteColor}$*${normalColor}"
|
|
|
|
}
|
|
|
|
|
2024-01-23 22:59:26 +01:00
|
|
|
function verboseEcho() {
|
|
|
|
if [[ -v VERBOSE ]]; then
|
|
|
|
echo "$*"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-04-30 01:29:39 +02:00
|
|
|
function _i() {
|
|
|
|
local msgid="$1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
# shellcheck disable=2059
|
|
|
|
printf "$(gettext "$msgid")\n" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
function _ip() {
|
|
|
|
local msgid="$1"
|
|
|
|
local msgidPlural="$2"
|
|
|
|
local count="$3"
|
|
|
|
shift 3
|
|
|
|
|
|
|
|
# shellcheck disable=2059
|
|
|
|
printf "$(ngettext "$msgid" "$msgidPlural" "$count")\n" "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
function _iError() {
|
|
|
|
echo -n "${errorColor}"
|
|
|
|
_i "$@"
|
|
|
|
echo -n "${normalColor}"
|
|
|
|
}
|
|
|
|
|
|
|
|
function _iWarn() {
|
|
|
|
echo -n "${warnColor}"
|
|
|
|
_i "$@"
|
|
|
|
echo -n "${normalColor}"
|
|
|
|
}
|
|
|
|
|
|
|
|
function _iNote() {
|
|
|
|
echo -n "${noteColor}"
|
|
|
|
_i "$@"
|
|
|
|
echo -n "${normalColor}"
|
|
|
|
}
|
2024-01-13 23:15:00 +01:00
|
|
|
|
2024-01-23 22:59:26 +01:00
|
|
|
function _iVerbose() {
|
|
|
|
if [[ -v VERBOSE ]]; then
|
|
|
|
_i "$@"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-01-13 23:15:00 +01:00
|
|
|
# Runs the given command on live run, otherwise prints the command to standard
|
|
|
|
# output.
|
|
|
|
#
|
2024-02-29 00:18:40 +01:00
|
|
|
# If given the command line option `--quiet`, then the command's standard output
|
|
|
|
# is sent to `/dev/null` on a live run.
|
|
|
|
#
|
2024-01-13 23:15:00 +01:00
|
|
|
# If given the command line option `--silence`, then the command's standard and
|
|
|
|
# error output is sent to `/dev/null` on a live run.
|
2024-02-29 00:18:40 +01:00
|
|
|
#
|
|
|
|
# The `--silence` and `--quiet` flags are mutually exclusive.
|
2024-01-13 23:15:00 +01:00
|
|
|
function run() {
|
2024-02-29 00:18:40 +01:00
|
|
|
if [[ $1 == '--quiet' ]]; then
|
|
|
|
local quiet=1
|
|
|
|
shift
|
|
|
|
elif [[ $1 == '--silence' ]]; then
|
2024-01-13 23:15:00 +01:00
|
|
|
local silence=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -v DRY_RUN ]] ; then
|
|
|
|
echo "$@"
|
2024-02-29 00:18:40 +01:00
|
|
|
elif [[ -v quiet ]] ; then
|
|
|
|
"$@" > /dev/null
|
2024-01-13 23:15:00 +01:00
|
|
|
elif [[ -v silence ]] ; then
|
|
|
|
"$@" > /dev/null 2>&1
|
|
|
|
else
|
|
|
|
"$@"
|
|
|
|
fi
|
|
|
|
}
|