Skip to content

Figurine, display your hostname in style ๐Ÿ˜Ž

Learn how to display a colorful and 3d looking custom text on your shell start screen.

figurine-screenshot

Installing and Configuring Figurine

Step 1โƒฃ : Download and Install Figurine  โฌ‡ โš™

Download binary and move to /usr/local/bin
1
2
3
wget https://github.com/arsham/figurine/releases/download/v1.3.0/figurine_linux_amd64_v1.3.0.tar.gz -O deploy.tar.gz
tar -xvf deploy.tar.gz
sudo mv deploy/figurine /usr/local/bin

Step 2โƒฃ : Test Figurine Installation  ๐Ÿงช โš™

Run this command to preview
figurine -f "3d.flf" `hostname`

Step 3โƒฃ : Create the Profile Script  ๐Ÿ“œ

Create file
sudo nano /etc/profile.d/figurine.sh

Add the following lines to the file:

Change hostname to whatever text you prefer
1
2
3
echo ""
figurine -f "3d.flf" `hostname`
echo ""

Step 4โƒฃ : Test the Script  ๐Ÿงช ๐Ÿ“œ

Check if its working
sh /etc/profile.d/figurine.sh

Step 5โƒฃ : Exit and log back in  ๐Ÿ“ค ๐Ÿ“ฅ

Once the file is created, exit your session and login locally or through SSH back in to test it.

Step 6โƒฃ : Clean Up  ๐Ÿงน

Remove leftover files
rm -rf deploy*