From 55b5c5e6b545132b685fb439a7d9b33fbebb074e Mon Sep 17 00:00:00 2001 From: jstmax! Date: Mon, 3 Nov 2025 23:37:33 +0100 Subject: remade my fish prompt (kinda) in powershell because i can --- cfg/powershell_prompt.ps1 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cfg/powershell_prompt.ps1 diff --git a/cfg/powershell_prompt.ps1 b/cfg/powershell_prompt.ps1 new file mode 100644 index 0000000..d328d49 --- /dev/null +++ b/cfg/powershell_prompt.ps1 @@ -0,0 +1,19 @@ +function prompt { + $user = $env:USERNAME + $cwd = (Get-Location).Path + + Write-Host "╭" -ForegroundColor white -NoNewline + Write-Host "(" -ForegroundColor red -NoNewline + Write-Host $user -ForegroundColor white -NoNewline + Write-Host "⮞" -ForegroundColor red -NoNewline + Write-Host "⮞" -ForegroundColor white -NoNewline + Write-Host "⮞" -ForegroundColor red -NoNewline + if ($cwd -eq "C:\Users\$user") { + Write-Host "~" -ForegroundColor white -NoNewline + } else { + Write-Host $cwd -ForegroundColor white -NoNewline + } + Write-Host ")" -ForegroundColor red + Write-Host "╰" -ForegroundColor red -NoNewline + return "⮞ " +} -- cgit v1.3.1 From b5351ffde7d6f6bbbb0dbc09bd91757ef951266d Mon Sep 17 00:00:00 2001 From: jstmax! Date: Wed, 12 Nov 2025 18:06:04 +0100 Subject: updated banner, ascii art/logo and ascii extra text --- README.md | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 1130818..c160b0b 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ -_konnaJM bg +_nosik_comm_banner ``` - _ _ _ - (_)___| |_ _ __ ___ __ ___ _| | => gfx designer && software dev (‾◡◝)// - | / __| __| '_ ` _ \ / _` \ \/ / | ☆ bit.ly/mx_info ☆ - | \__ \ |_| | | | | | (_| |> <|_| ☆ vi/vim/nvim user ☆ - _/ |___/\__|_| |_| |_|\__,_/_/\_(_) -|__/ +__/\__ _ _ _ +\ / (_)___| |_ _ __ ___ __ ___ _| | => gfx designer && software dev (‾◡◝)// +/_ _\ | / __| __| '_ ` _ \ / _` \ \/ / | ☆ bit.ly/mx_info ☆ + \/ | \__ \ |_| | | | | | (_| |> <|_| ☆ vi/vim/nvim user ☆ + _/ |___/\__|_| |_| |_|\__,_/_/\_(_) + |__/ =============================================================================== => social networks ( ﹁ ﹁ ) ~→ @@ -27,7 +27,8 @@ currently leading development of the REBORN programming language, link: github.c => programming languages (っ °Д °;)っ - C / C++ - Python -- HTML/CSS | not programming languages but i am not making another category just for these fuckers +- Go +- HTML/CSS | not programming languages but i am not making another category just for these two fuckers - JavaScript/TypeScript =============================================================================== => languages i speak ヾ(≧▽≦*)o @@ -37,11 +38,11 @@ japanese -> studying german -> plans to study russian -> plans to study =============================================================================== - _ _ __ __ - _____ _| |_ _ __ __ _ ___| |_ _ _ / _|/ _| - / _ \ \/ / __| '__/ _` | / __| __| | | | |_| |_ -| __/> <| |_| | | (_| | \__ \ |_| |_| | _| _| - \___/_/\_\\__|_| \__,_| |___/\__|\__,_|_| |_| + _ __ + _____ _| |_ _ __ __ _ / / + / _ \ \/ | __| '__/ _` | / / +| __/> <| |_| | | (_| |/ / + \___/_/\_\\__|_| \__,_/_/ =============================================================================== - hex signature = jstmax@62-69-74-2E-6C-79-2F-6D-78-5F-69-6E-66-6F -- cgit v1.3.1