From 17fa5f5d4f1024fcb93354954a00065b33577c7c Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Sun, 17 Aug 2025 11:02:40 +0200 Subject: [PATCH] Add upper- and lower-case shell scripts as alias --- shell/alias | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell/alias b/shell/alias index f298031..639ed8f 100644 --- a/shell/alias +++ b/shell/alias @@ -23,6 +23,9 @@ alias wmu='wake-me-up' alias tmfa='tmux-fzf' alias gp='git interactive-push' +alias upper='lua -e "for line in io.lines() do print(line:upper()) end"' +alias lower='lua -e "for line in io.lines() do print(line:lower()) end"' + bat_theme() { if [ -e $HOME/.dark ] then echo 'Monokai Extended Bright'