From 3981f26da3c487e325368c0bfabad4b9034aca4a Mon Sep 17 00:00:00 2001 From: Azalea Date: Wed, 21 Sep 2022 13:18:57 -0400 Subject: [PATCH] [+] Aliases --- scripts/zshrc.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/zshrc.sh b/scripts/zshrc.sh index 0dc381d..816c829 100755 --- a/scripts/zshrc.sh +++ b/scripts/zshrc.sh @@ -49,6 +49,14 @@ alias restart-kwin="DISPLAY=:0 setsid kwin_x11 --replace" alias catt="echo 🐱" alias old-update-ssh-keys="curl -L https://github.com/Hykilpikonna.keys > ~/.ssh/authorized_keys" +alias exa="exa -lh" + +# Unix permissions reset (Dangerous! This will make executable files no longer executable) +reset-permissions-dangerous() { + sudo find . -type d -exec chmod 755 {} \; + sudo find . -type f -exec chmod 644 {} \; +} + export PATH="$SCR/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"