-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from andresgongora/release
Release v2.2
- Loading branch information
Showing
12 changed files
with
266 additions
and
156 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ You may add your name, email, a link to your personal web-site/blog/profile | |
Main developer | ||
|
||
|
||
* **Sami Olmari** | ||
* **Sami Olmari** | ||
<[email protected]> | ||
www.olmari.fi | ||
2019 - Major improvements to `status.sh` | ||
|
@@ -38,6 +38,10 @@ You may add your name, email, a link to your personal web-site/blog/profile | |
2019 - Incorporate git-related information to `fancy-bash-promt.sh` | ||
|
||
|
||
* **PeterJRiches** | ||
2019 - Proofreading of comments and explanation fixes | ||
|
||
|
||
|
||
|
||
|
||
|
This file contains 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
This file contains 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
48 changes: 48 additions & 0 deletions
48
config_templates/fancy-bash-prompt.config.examples/fancy-bash-prompt.config.orange
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
##============================================================================== | ||
## COLORS | ||
## | ||
## Control the color and format scheme of the bash prompt. | ||
## The prompt is divided into segments, listed belows starting from the left: | ||
## - USER: shows the user's name. | ||
## - HOST: shows the host's name. | ||
## - PWD: shows the current directory. | ||
## - GIT: if inside a git repository, shows the name of current branch. | ||
## - INPUT: actual bash input. | ||
## | ||
## Valid color options: | ||
## white black light-gray dark-gray | ||
## red green yellow blue cyan purple | ||
## light-red light-green light-yellow light-blue light-cyan light-purple | ||
## values in the range [0-255] for 256 bit colors | ||
##============================================================================== | ||
|
||
font_color_user="black" | ||
background_user="208" | ||
texteffect_user="bold" | ||
|
||
font_color_host="black" | ||
background_host="180" | ||
texteffect_host="bold" | ||
|
||
font_color_pwd="black" | ||
background_pwd="white" | ||
texteffect_pwd="bold" | ||
|
||
font_color_git="light-gray" | ||
background_git="dark-gray" | ||
texteffect_git="bold" | ||
|
||
font_color_input="208" | ||
background_input="none" | ||
texteffect_input="bold" | ||
|
||
|
||
|
||
##============================================================================== | ||
## BEHAVIOR | ||
##============================================================================== | ||
local separator_char='\uE0B0' # Separation character, '\uE0B0'=triangle | ||
enable_vertical_padding=true # Add extra new line over prompt | ||
show_git=true # Enable/Disable git info if inside a repo | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.