grammar changes..

This commit is contained in:
pika 2024-06-06 23:19:35 +02:00
parent 745728661f
commit 2e51ff52a6

View file

@ -119,16 +119,16 @@ end
if command -v fastfetch >/dev/null 2>&1 if command -v fastfetch >/dev/null 2>&1
alias ff="fastfetch" alias ff="fastfetch"
alias clearff="command clear & fastfetch" alias clearff="command clear & fastfetch"
# ─< check for fastfetch module-existance >───────────────────────────────────────────────── # ─< check for fastfetch module-existence >─────────────────────────────────────────────────
command fastfetch --config os >/dev/null 2>&1 command fastfetch --config os >/dev/null 2>&1
# ─< check the status >───────────────────────────────────────────────────────────────────── # ─< check the status >─────────────────────────────────────────────────────────────────────
switch $status switch $status
case 0 case 0
alias f="fastfetch --config os" alias f="fastfetch --config os"
# ─< unsuccessfull, cloning repo >────────────────────────────────────────────────────────── # ─< unsuccessful, cloning repo >──────────────────────────────────────────────────────────
case '*' case '*'
git clone https://git.k4li.de/mirror/fastfetch $HOME/.local/share/fastfetch >/dev/null 2>&1 git clone https://git.k4li.de/mirror/fastfetch $HOME/.local/share/fastfetch >/dev/null 2>&1
# ─< execute fish to reinitialize aliasses >──────────────────────────────────────────────── # ─< execute fish to reinitialize aliases >────────────────────────────────────────────────
exec fish exec fish
end end
clear & f clear & f