From f9a82e2d3467dfb0869b4cd553e0db6d9f8af21b Mon Sep 17 00:00:00 2001 From: "Andrew R. M" Date: Fri, 3 Nov 2017 16:26:13 -0400 Subject: [PATCH] Make python prompt cooler! I should probably do real work, but I'm waiting for something to compile so ya know. --- python/.pythonrc | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/python/.pythonrc b/python/.pythonrc index 3857c13..0f6e36a 100644 --- a/python/.pythonrc +++ b/python/.pythonrc @@ -8,15 +8,12 @@ import sys blue = '\001\033[1;34m\002' yellow = '\001\033[1;33m\002' - -magenta = '\001\033[1;35m\002' -red = '\001\033[1;31m\002' reset = '\001\033[0m\002' -# Primary prompt: (>>> ) in magenta -sys.ps1 = yellow + '○' + reset + ' ' -# Secondary prompt: (... ) in red -sys.ps2 = blue + '•' + reset + ' ' +# Primary prompt: (∞) in yellow +sys.ps1 = yellow + '►' + reset + ' ' +# Secondary prompt: (•) in blue +sys.ps2 = blue + '▼' + reset + ' ' # Use ~/.history/python as a history file instead of ~/.python_history def custom_readline():