Skip to content

Instantly share code, notes, and snippets.

@koyuawsmbrtn
Created June 28, 2019 21:43
Show Gist options
  • Save koyuawsmbrtn/a184d18ae74eca5660e28782bec9a79a to your computer and use it in GitHub Desktop.
Save koyuawsmbrtn/a184d18ae74eca5660e28782bec9a79a to your computer and use it in GitHub Desktop.
diff --git a/neofetch b/neofetch
index ae32366..7f7a154 100755
--- a/neofetch
+++ b/neofetch
@@ -3478,7 +3478,11 @@ get_ascii() {
ascii_data="${ascii_data//\$\{c6\}/$c6}"
((text_padding=ascii_len+gap))
- printf '%b\n' "$ascii_data${reset}"
+ if [[ $(date +%m) == "06" ]]; then
+ printf '%b\n' "$ascii_data${reset}" | lolcat
+ else
+ printf '%b\n' "$ascii_data${reset}"
+ fi
LC_ALL=C
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment