Whitespace changes.

This commit is contained in:
James Patrick 2020-12-08 22:03:39 -05:00
parent aee151dbb9
commit 06389a76e2
1 changed files with 5 additions and 5 deletions

View File

@ -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"
}