From 09ce7d00a97fb51d2989939e3c800d16d95f835c Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sat, 18 Dec 2021 12:04:28 +0100 Subject: [PATCH] Convert tabs to spaces --- home/.config/shell/aliases | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/home/.config/shell/aliases b/home/.config/shell/aliases index 92dc382..a100151 100755 --- a/home/.config/shell/aliases +++ b/home/.config/shell/aliases @@ -285,20 +285,20 @@ fi # Normalize `open` across Linux, macOS, and Windows. # This is needed to make `open` function (see below) cross-platform if [ ! $(uname -s) = 'Darwin' ]; then - if grep -q Microsoft /proc/version; then - # Ubuntu on Windows using the Linux subsystem - alias open='explorer.exe' - else - alias open='xdg-open' - fi + if grep -q Microsoft /proc/version; then + # Ubuntu on Windows using the Linux subsystem + alias open='explorer.exe' + else + alias open='xdg-open' + fi fi # Functions if [ -f ~/.config/shell/functions ]; then - source ~/.config/shell/functions + source ~/.config/shell/functions fi # Extra if [ -f ~/.config/shell/extra ]; then - source ~/.config/shell/extra + source ~/.config/shell/extra fi