mirror of
https://github.com/Lissy93/dotfiles.git
synced 2024-11-22 07:23:10 +01:00
Split big welcome function into individual methods
This commit is contained in:
parent
75f331ceb5
commit
b5519382c7
68
utils/welcome-banner.sh
Normal file → Executable file
68
utils/welcome-banner.sh
Normal file → Executable file
@ -1,32 +1,44 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Welcome script, prints personalised, time-based greeting and system info
|
||||
# Licensed under MIT, (C) Alicia Sykes 2021: https://aliciasykes.com
|
||||
######################################################################
|
||||
# 🌞 Welcome Banner #
|
||||
######################################################################
|
||||
# Prints personal greeting, system info and data about today #
|
||||
# Intended for use as a MOTD, for when using multiple systems #
|
||||
# For docs and more info, see: https://github.com/lissy93/dotfiles #
|
||||
# #
|
||||
# Licensed under MIT (C) Alicia Sykes 2022 <https://aliciasykes.com> #
|
||||
######################################################################
|
||||
|
||||
function welcome() {
|
||||
# Determine greeting based on the time of day
|
||||
# Formatting variables
|
||||
COLOR_P='\033[1;36m'
|
||||
COLOR_S='\033[0;36m'
|
||||
RESET='\033[0m'
|
||||
|
||||
# Print time-based personalized message, using figlet & lolcat if availible
|
||||
function welcome_greeting () {
|
||||
h=`date +%H`
|
||||
if [ $h -lt 04 ] || [[ $h -gt 22 ]]; then greeting="Good Night"
|
||||
elif [ $h -lt 12 ]; then greeting="Good morning"
|
||||
elif [ $h -lt 18 ]; then greeting="Good afternoon"
|
||||
elif [ $h -lt 22 ]; then greeting="Good evening"
|
||||
else greeting="Hello"
|
||||
if [ $h -lt 04 ] || [[ $h -gt 22 ]];
|
||||
then greeting="Good Night"
|
||||
elif [ $h -lt 12 ];
|
||||
then greeting="Good morning"
|
||||
elif [ $h -lt 18 ];
|
||||
then greeting="Good afternoon"
|
||||
elif [ $h -lt 22 ];
|
||||
then greeting="Good evening"
|
||||
else
|
||||
greeting="Hello"
|
||||
fi
|
||||
|
||||
COLOR_P="\033[1;36m"
|
||||
COLOR_S="\033[0;36m"
|
||||
|
||||
# Make welcome message
|
||||
WELCOME_MSG="$greeting $USER!"
|
||||
|
||||
# Print welcome message, using figlet & lolcat if availible
|
||||
if hash lolcat 2>/dev/null && hash figlet 2>/dev/null; then
|
||||
echo "${WELCOME_MSG}" | figlet | lolcat
|
||||
else
|
||||
echo -e "$COLOR_P${WELCOME_MSG}\033[0m\n"
|
||||
echo -e "$COLOR_P${WELCOME_MSG}${RESET}\n"
|
||||
fi
|
||||
}
|
||||
|
||||
# Print system information with neofetch, if it's installed
|
||||
# Print system information with neofetch, if it's installed
|
||||
function welcome_sysinfo () {
|
||||
if hash neofetch 2>/dev/null; then
|
||||
neofetch --shell_version off \
|
||||
--disable shell resolution de wm wm_theme theme icons terminal \
|
||||
@ -35,26 +47,36 @@ function welcome() {
|
||||
--color_blocks off \
|
||||
--memory_display info
|
||||
fi
|
||||
}
|
||||
|
||||
# Print todays info: Date, IP, weather, etc
|
||||
function welcome_today () {
|
||||
timeout=0.5
|
||||
|
||||
echo "\033[1;34mToday\n------"
|
||||
echo -e "\033[1;34mToday\n------"
|
||||
|
||||
# Print date time
|
||||
echo "$COLOR_S$(date '+🗓️ Date: %A, %B %d, %Y at %H:%M')"
|
||||
echo -e "$COLOR_S$(date '+🗓️ Date: %A, %B %d, %Y at %H:%M')"
|
||||
|
||||
# Print local weather
|
||||
curl -s -m $timeout "wttr.in?format=%cWeather:+%C+%t,+%p+%w"
|
||||
echo -e "\033[0m"
|
||||
echo -e "${RESET}"
|
||||
|
||||
# Print IP address
|
||||
if hash ip 2>/dev/null; then
|
||||
ip_address=$(ip route get 8.8.8.8 | awk -F"src " 'NR==1{split($2,a," ");print a[1]}')
|
||||
ip_interface=$(ip route get 8.8.8.8 | awk -F"dev " 'NR==1{split($2,a," ");print a[1]}')
|
||||
echo "${COLOR_S}🌐 IP: $(curl -s -m $timeout 'https://ipinfo.io/ip') (${ip_address} on ${ip_interface})\033[0m\n"
|
||||
echo -e "${COLOR_S}🌐 IP: $(curl -s -m $timeout 'https://ipinfo.io/ip') (${ip_address} on ${ip_interface})"
|
||||
echo -e "${RESET}\n"
|
||||
fi
|
||||
}
|
||||
|
||||
# Putting it all together
|
||||
function welcome() {
|
||||
welcome_greeting
|
||||
welcome_sysinfo
|
||||
welcome_today
|
||||
}
|
||||
|
||||
# Determine if file is being run directly or sourced
|
||||
([[ -n $ZSH_EVAL_CONTEXT && $ZSH_EVAL_CONTEXT =~ :file$ ]] ||
|
||||
[[ -n $KSH_VERSION && $(cd "$(dirname -- "$0")" &&
|
||||
|
Loading…
Reference in New Issue
Block a user