Created
August 28, 2017 19:15
-
-
Save JohnL4/25ba00169bcc0f4c6fad1756b1c369c3 to your computer and use it in GitHub Desktop.
Reverse-video cmd.exe prompt; might need ANSICON for this to work in Win 7, but it works out of the box in Win 10.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@rem $E - escape | |
@rem ESC [ 7 m - reverse video | |
@rem ESC [ 0 m - normal mode | |
@rem $P - current path | |
@rem @G - greater-than sign | |
@rem $S - space | |
@prompt $E[7m$P$G$E[0m$S |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment