fixed installation script

This commit is contained in:
Marco Sbrignadello 2020-10-30 08:51:01 +01:00 committed by Maciej Sypień
parent 9cb521fef1
commit ccab926b56
4 changed files with 7 additions and 6 deletions

View file

@ -10,9 +10,9 @@ get_theme() {
local option_value
option_value=$(tmux show-option -gqv "$option")
if [ -z "$option_value" ]; then
print "$default_value"
echo "$default_value"
else
print "$option_value"
echo "$option_value"
fi
}