From 9bade74f0236e259275fc77bc0ed3a99d7a5ab71 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 17 Feb 2024 23:10:55 +0100 Subject: [PATCH] Remove devour aliases --- home/.config/shell/aliases | 7 ------- 1 file changed, 7 deletions(-) diff --git a/home/.config/shell/aliases b/home/.config/shell/aliases index 3ae5683..0a86e94 100755 --- a/home/.config/shell/aliases +++ b/home/.config/shell/aliases @@ -108,13 +108,6 @@ alias mergepdf='gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=_merged.p alias encrypt='gpg -c --no-symkey-cache --cipher-algo AES256' # Encrypt file with AES256 symetric encryption alias decrypt='gpg' # For the sake of completeness, include decrypt command to the above, though it's only just gpg alias -# Terminal window swallowing for blocking programs (devour) -alias xdg-open='devour xdg-open' -alias mpv='devour mpv' -alias nomacs='devour nomacs' -alias pcmanfm='devour pcmanfm' -alias spotify='devour spotify' - # Regular expressions alias reg_email='echo "[a-Z0-9._%-]+@[a-Z0-9.-]+\.[a-Z]{2,10}"' alias reg_mac='echo "([[:xdigit:]]{2}:){5}[[:xdigit:]]{2}"'