Created
March 15, 2019 11:38
-
-
Save JupyterJones/473fcff7d3ceb60e9ec38fe90425ca94 to your computer and use it in GitHub Desktop.
Create custom prompts for screen captures
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
#!/bin/bash | |
# Bash Prompt Menu | |
PS3='Please enter your choice: ' | |
options=("YouTube" "JupyterJones" "MyLinuxToyBox" "Philippines" "Date-Time" "Original" "Quit") | |
select opt in "${options[@]}" | |
do | |
case $opt in | |
"YouTube") | |
PS1="\[\e[41m\]YouTube\[\e[m\]Videos: \\$ " | |
break ;; | |
"JupyterJones") | |
PS1="\[\e[41m\]JupyterJones\[\e[m\]Videos: \\$ " | |
break ;; | |
"MyLinuxToyBox") | |
PS1="\[\e[37;41m\]YouTube: \[\e[m\]\[\e[37;40m\] \[\e[m\]\[\e[31;47m\]MylinuxToyBox Videos\[\e[m\]:\\$ " | |
break ;; | |
"Philippines") | |
PS1="\[\e[37;41m\]YouTube: \[\e[m\]\[\e[37;40m\] \[\e[m\]\[\e[30;42m\]Philippine Videos\[\e[m\]:\\$ " | |
break ;; | |
"Date-Time") | |
PS1="\[\e[31m\]\d\[\e[m\] \t \\$ " | |
break ;; | |
"Original") | |
PS1="\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ " | |
break ;; | |
"Quit") | |
break ;; | |
*) echo invalid option;; | |
esac | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment