diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2019-08-23 21:07:53 +0100 |
---|---|---|
committer | Harry Jeffery <harry@exec64.co.uk> | 2019-08-23 21:07:53 +0100 |
commit | 97e2aafa383677ac749e68e0d2631449171a846f (patch) | |
tree | 0b695f7b69146a8595368fdd390e54ac2585f648 | |
parent | 1aefaab5a2534a574041bd3e9ef360867ac61099 (diff) | |
download | imv-97e2aafa383677ac749e68e0d2631449171a846f.tar.gz |
README: Fix errors in examples
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ imv's key bindings can be customised to trigger custom behaviour: <Shift+R> = exec mogrify -rotate 90 "$imv_current_file" # Use dmenu as a prompt for tagging the current image - u = exec echo $imv_current_file >> ~/tags/$(ls ~/tags | dmenu -p "tag") + u = exec echo "$imv_current_file" >> ~/tags/$(ls ~/tags | dmenu -p "tag") ### Scripting @@ -101,7 +101,7 @@ For example: imv-msg $imv_pid open ~/new_path # Run another script against the currently open file - imv-msg $imv_pid exec another-script.sh $imv_current_file + imv-msg $imv_pid exec another-script.sh '$imv_current_file' done |