From b8078a176e2ef3af10bf77621d9560937ac87f50 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Sun, 17 Dec 2023 17:31:46 -0500 Subject: [PATCH] Alias pacman to "yay" --- fake_home/.shell_aliases | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fake_home/.shell_aliases b/fake_home/.shell_aliases index 3fe6e92..d921e8f 100755 --- a/fake_home/.shell_aliases +++ b/fake_home/.shell_aliases @@ -1,5 +1,9 @@ #!/bin/bash +if command -v yay; then + alias pacman="yay" +fi + function ishelp { [[ "$1" == "help" ]] || [[ "$1" == "-h" ]] || [[ "$1" == "--help" ]] }