Add termux support in fish clipboard

pull/1/head
Ensar Sarajčić 2021-01-19 08:28:27 +01:00
parent d0759c58d4
commit f4b5475433
1 changed files with 7 additions and 2 deletions

View File

@ -1,2 +1,7 @@
alias pbcopy 'wl-copy'
alias pbpaste 'wl-paste'
if which termux-info &> /dev/null
alias pbcopy 'termux-clipboard-set'
alias pbpaste 'termux-clipboard-get'
else
alias pbcopy 'wl-copy'
alias pbpaste 'wl-paste'
end