Last active
September 10, 2022 16:31
-
-
Save sultanqasim/d7debf85ea962453e5beb35df63d87de to your computer and use it in GitHub Desktop.
Revisions
-
sultanqasim revised this gist
Sep 10, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ case "$TERM" in xterm-color|*-256color) PS1='[\[\e[1;32m\]\u@\h \[\e[1;34m\]\W\[\e[m\]]\$ ' ;; *) PS1='[\u@\h \W]\$ ' -
sultanqasim revised this gist
Sep 10, 2022 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ case "$TERM" in xterm-color|*-256color) PS1='[\e[1;32m\u@\h\e[m \e[1;34m\W\e[m]\$ ' -
sultanqasim revised this gist
Sep 10, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # looks good with Source Code Pro (10 pt) font in Konsole case "$TERM" in xterm-color|*-256color) PS1='[\e[1;32m\u@\h\e[m \e[1;34m\W\e[m]\$ ' -
sultanqasim created this gist
Sep 10, 2022 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ # looks good with Source Code Pro Medium (10 pt) font in Konsole case "$TERM" in xterm-color|*-256color) PS1='[\e[1;32m\u@\h\e[m \e[1;34m\W\e[m]\$ ' ;; *) PS1='[\u@\h \W]\$ ' ;; esac