From 198d7a8de374ea9f7f7f6be4449d083f2a020f20 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Tue, 28 Apr 2026 18:00:09 +0200 Subject: [PATCH] Color ap command output in cyan Co-Authored-By: Claude Sonnet 4.6 --- dotfiles/desktop/.bashrc.d/50-ap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/desktop/.bashrc.d/50-ap.sh b/dotfiles/desktop/.bashrc.d/50-ap.sh index e787b6d..89ed3b9 100755 --- a/dotfiles/desktop/.bashrc.d/50-ap.sh +++ b/dotfiles/desktop/.bashrc.d/50-ap.sh @@ -12,7 +12,7 @@ ap() { cmd+=(--tag "$1") fi - printf '+ %s\n' "${cmd[*]}" + printf '\033[0;36m+ %s\033[0m\n' "${cmd[*]}" "${cmd[@]}" ) }