From 0b921c4313d345e1c53e6db9249e7cd145dbd6d6 Mon Sep 17 00:00:00 2001 From: Thomas Dehaeze Date: Tue, 3 Nov 2020 11:41:18 +0100 Subject: [PATCH] Add quotes when needed --- dotfiles/ranger.org | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dotfiles/ranger.org b/dotfiles/ranger.org index c92cf88..5b4559d 100644 --- a/dotfiles/ranger.org +++ b/dotfiles/ranger.org @@ -231,9 +231,10 @@ Open SXIV on current directory map ,s shell nohup sxiv -t %d & #+END_SRC -Upload with 0x0 (previously Tansfer.sh) +Upload with 0x0 / self hosted Tansfer.sh #+BEGIN_SRC conf map ,t shell upload %f + map ,T shell share %f #+END_SRC Open current folder with PCManFM @@ -315,9 +316,9 @@ Backup to NAS #+begin_src bash if [ $TMUX ]; then - tmux split -v -l 1 rsync -a --info=progress2 ${@:2} $1 && tmux select-pane -U + tmux split -v -l 1 rsync -a --info=progress2 "${@:2}" "$1" && tmux select-pane -U else - rsync -a --info=progress2 ${@:2} $1 + rsync -a --info=progress2 "${@:2}" "$1" fi #+end_src