mirror of
https://github.com/Cian-H/dotfiles.git
synced 2026-01-19 06:51:56 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
10 lines
190 B
Bash
10 lines
190 B
Bash
#!/bin/bash
|
|
if [ $# -eq 0 ]; then
|
|
echo "Usage: divider file"
|
|
exit 1
|
|
fi
|
|
printf '\033]1337;File=inline=1;width=100%%;height=1;preserveAspectRatio=0'
|
|
printf ":"
|
|
base64 < "$1"
|
|
printf '\a\n'
|