proxmox

A Fancy Login Banner for your Linux Server

A Fancy Login Banner for your Linux Server

#Fancy #Login #Banner #Linux #Server

“KTZ Systems”

Using github.com/arsham/figurine we make the most fancy login banner imaginable.

๐Ÿ–ฅ๏ธ
๐ŸŽ™๏ธ podcast
๐Ÿฆฃ mastodon techhub.social/@ironicbadger
๐Ÿ““
๐Ÿ’พ
๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป…

source

 

To see the full content, share this page by clicking one of the buttons below

Related Articles

9 Comments

  1. My comment seems to have been deleted, either by google because it contained a link or by you. I'll post the content again in case it was google:

    This is pretty neat. I created a derivation for nix you can use via (callPackage ./figurine.nix {}) in your configuration if you put the following into the file:

    {
    lib,
    buildGoModule,
    fetchFromGitHub,
    }:
    buildGoModule rec {
    pname = "figurine";
    version = "1.3.0";

    src = fetchFromGitHub {
    owner = "arsham";
    repo = "figurine";
    rev = "v${version}";
    hash = "sha256-1q6Y7oEntd823nWosMcKXi6c3iWsBTxPnSH4tR6+XYs=";
    };

    vendorHash = "sha256-mLdAaYkQH2RHcZft27rDW1AoFCWKiUZhh2F0DpqZELw=";

    meta = with lib; {
    homepage = "https://github.com/arsham/figurine";
    description = "Print your name in style";
    platforms = platforms.linux ++ platforms.darwin;
    license = licenses.asl20;
    maintainers = [];
    };
    }

Leave a Reply