Compare commits

..

No commits in common. "84d954816e0d8e3cd4d7edab759b65bc1116307c" and "223808164d799595ab99ffd2f1998214d57aa735" have entirely different histories.

View file

@ -15,17 +15,15 @@ INFO_COLOR="\033[0;32m"
ERR_COLOR="\033[1;31m" ERR_COLOR="\033[1;31m"
NO_COLOR="\033[0m" NO_COLOR="\033[0m"
function info() { info() {
# shellcheck disable=SC2059 printf "$APP_COLOR[$APP_NAME] $INFO_COLOR$1$NO_COLOR\n"
printf "${APP_COLOR}[$APP_NAME] $INFO_COLOR%s$NO_COLOR\n" "$1"
} }
function error() { error() {
# shellcheck disable=SC2059 printf "$APP_COLOR[$APP_NAME] $ERR_COLOR$1$NO_COLOR\n"
printf "${APP_COLOR}[$APP_NAME] $ERR_COLOR%s$NO_COLOR\n" "$1"
} }
function usage() { usage() {
info "Usage: flatpak-sync [sync | add <appId> | remove <appId> | usage]" info "Usage: flatpak-sync [sync | add <appId> | remove <appId> | usage]"
info "sync: Synchronized installed apps with app list." info "sync: Synchronized installed apps with app list."
info "add | a | install | i: Add app with app id to the list and sync." info "add | a | install | i: Add app with app id to the list and sync."