From 34ac6a1809a0049bb3c5bde55d5aafde88266bdb Mon Sep 17 00:00:00 2001 From: dabruh <11458706-dabruh@users.noreply.gitlab.com> Date: Wed, 15 Nov 2023 17:38:50 +0100 Subject: [PATCH] Use double quotes --- .config/shell/aliases/common | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/shell/aliases/common b/.config/shell/aliases/common index 4ec2060..41cffd4 100644 --- a/.config/shell/aliases/common +++ b/.config/shell/aliases/common @@ -6,21 +6,21 @@ alias \ ls="ls --color=auto" \ bc="bc -ql" \ cp="cp -iv" \ - df='df -h' \ + df="df -h" \ e="${EDITOR:-vim}" \ ffmpeg="ffmpeg -hide_banner" \ - free='free -m' \ + free="free -m" \ g="git" \ ka="killall" \ mkd="mkdir -pv" \ mv="mv -iv" \ rm="rm -vI" \ shrd="shred -zuvn3" \ - tmux='tmux -f ~/.config/tmux/tmux.conf' + tmux="tmux -f ~/.config/tmux/tmux.conf" # Misc alias \ - w='curl https://wttr.in/' + w="curl https://wttr.in/" for cmd in code codium; do command -v $cmd && alias $cmd="$cmd --password-store='gnome'"