1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-30 14:10:15 +00:00
dotfiles/.config/fish/functions/clip.fish

9 lines
199 B
Fish
Raw Normal View History

2020-07-20 02:11:21 +00:00
# Defined in /tmp/fish.VJPA2j/clip.fish @ line 1
function clip
if test $argv
echo $argv | xclip -i -selection clipboard
else
cat - | xclip -i -selection clipboard
end
end