fixed installation script

This commit is contained in:
Marco Sbrignadello 2020-10-30 08:51:01 +01:00
parent 9cb521fef1
commit 52a35ac1bc
No known key found for this signature in database
GPG key ID: 08FD26FACF107412
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
}