blob: 5e9b91a027ebd4f342ad76a5f681be63d1d14f39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: nougatbyte nougatbyte at itandstuff dot de
pkgname=clipboard-type-wl
pkgver=1.1.1
pkgrel=1
pkgdesc="A simple script using dotool to type clipboard contents"
arch=('any')
url="https://github.com/nougatbyte/clipboard-type-wl"
license=('MIT')
depends=('dotool' 'wl-clipboard')
source=("script.sh")
sha256sums=('SKIP')
package() {
install -Dm755 "$srcdir/script.sh" "$pkgdir/usr/bin/clipboard-type-wl"
}
post_install() {
echo "Run 'clipboard-type-wl' or set it as a shortcut in your DE to type the contents of your clipboard."
}
|