genpac 0.1.0

Sandbox for Gentoo ebuild development using bubblewrap
1
2
3
4
5
6
7
8
9
10
11
--- a/profile	2023-12-20 16:10:29.390482733 +0530
+++ b/profile	2023-12-20 16:10:48.337629807 +0530
@@ -45,3 +45,8 @@
 	# understand sequences such as \h, don't put anything special in it.
 	PS1="${USER:-$(whoami 2>/dev/null)}@$(uname -n 2>/dev/null) \$ "
 fi
+
+# Ref: https://wiki.archlinux.org/title/Bash/Prompt_customization
+CYANBOLD="\[$(tput setaf 12)$(tput bold)\]"
+RESET="\[$(tput sgr0)\]"
+export PS1="${CYANBOLD}(${GENPAC:-genpac})${RESET} ${PS1}"