From cf2ba6f10068aa08eb8750355f66f2d4a3d67fb9 Mon Sep 17 00:00:00 2001 From: Ceres Date: Sun, 14 Dec 2025 22:23:52 +0000 Subject: [PATCH] Add haikus --- fish/functions/1 | 3 +++ fish/functions/2 | 3 +++ fish/functions/3 | 3 +++ fish/functions/fish_greeting.fish | 12 ++++++------ 4 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 fish/functions/1 create mode 100644 fish/functions/2 create mode 100644 fish/functions/3 diff --git a/fish/functions/1 b/fish/functions/1 new file mode 100644 index 0000000..5007c22 --- /dev/null +++ b/fish/functions/1 @@ -0,0 +1,3 @@ +ringed azure sunsets, +highest peaks under two suns; +tiny shining dot diff --git a/fish/functions/2 b/fish/functions/2 new file mode 100644 index 0000000..6bce199 --- /dev/null +++ b/fish/functions/2 @@ -0,0 +1,3 @@ +stunning dusty clouds +stars dancing in synchrony +amidst endless dark diff --git a/fish/functions/3 b/fish/functions/3 new file mode 100644 index 0000000..d2e89ad --- /dev/null +++ b/fish/functions/3 @@ -0,0 +1,3 @@ +starry fireworks spark +galaxy-bright, yet so small— +little fires start diff --git a/fish/functions/fish_greeting.fish b/fish/functions/fish_greeting.fish index 34d5bb6..158ad2a 100644 --- a/fish/functions/fish_greeting.fish +++ b/fish/functions/fish_greeting.fish @@ -1,10 +1,10 @@ function fish_greeting - echo -ne '\x1b[38;5;16m' # Set colour to primary - echo ' ______ __ __ _ ' - echo ' / ____/___ ____ / /__ _____/ /_(_)___ _ ' - echo ' / / / __ `/ _ \/ / _ \/ ___/ __/ / __ `/ ' - echo ' / /___/ /_/ / __/ / __(__ ) /_/ / /_/ / ' - echo ' \____/\__,_/\___/_/\___/____/\__/_/\__,_/ ' + set num $(random 1 3) + echo -ne '\x1b[38;5;16m' # Set colour to primary + echo '▄▖ ▄▖ ▄▖▜ ▜ ' + echo '▌ █▌▛▘█▌▛▘▄▖▚ █▌█▌▛▘▄▖▌▌▐ ▐ ' + echo '▙▖▙▖▌ ▙▖▄▌ ▄▌▙▖▙▖▄▌ ▛▌▐▖▐▖' echo '' + echo "$(cat ~/caelestia/fish/functions/$num)" glafetch end