From 06389a76e2ee653216109092a35917afbec0d7f9 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 8 Dec 2020 22:03:39 -0500 Subject: [PATCH] Whitespace changes. --- sway/scripts/clipboard | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sway/scripts/clipboard b/sway/scripts/clipboard index 963004f..b96f515 100755 --- a/sway/scripts/clipboard +++ b/sway/scripts/clipboard @@ -105,31 +105,31 @@ EOF } qr(){ - local file + local file file="$(parse-file "$1")" cat $file | qrencode -o - \ --size=25 \ --background=161720 \ --foreground=AAB5C6 | - feh - + feh - } delete(){ - local file + local file file="$(parse-file "$1")" rm $file } preview(){ - local file + local file file="$(parse-file "$1")" if [ -f "$1" ]; then kitty +kitten icat --silent --stdin=no "$1" return fi - + bat -l bash --color always -pp "$file" }