user/qubes-dmenu: new aport
This commit is contained in:
parent
f813c67473
commit
beefeab8cd
2 changed files with 92 additions and 0 deletions
69
user/qubes-dmenu/APKBUILD
Normal file
69
user/qubes-dmenu/APKBUILD
Normal file
|
@ -0,0 +1,69 @@
|
|||
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
|
||||
pkgname=qubes-dmenu
|
||||
pkgver=0.38.0
|
||||
_gittag="a3de0c2ece478aaeaaff5aec60887e683f2a8ce0"
|
||||
_patchertag="6417335f09f0d2fb2faec78c5702a1ef9a19ab02"
|
||||
_patchlist="
|
||||
line-height
|
||||
fuzzymatch
|
||||
fuzzyhighlight
|
||||
numbers
|
||||
xyw
|
||||
border
|
||||
"
|
||||
pkgrel=3
|
||||
pkgdesc="A patch-friendly dmenu distribution"
|
||||
arch="all"
|
||||
url="https://github.com/jaimecgomezz/dmenu"
|
||||
license="MIT"
|
||||
depends="
|
||||
bash
|
||||
freetype
|
||||
python3
|
||||
"
|
||||
makedepends="
|
||||
fontconfig
|
||||
libx11-dev
|
||||
libxft-dev
|
||||
libxinerama-dev
|
||||
"
|
||||
subpackages="$pkgname-doc"
|
||||
options="!check"
|
||||
source="
|
||||
$pkgname-$_gittag.tar.gz::https://github.com/jaimecgomezz/dmenu/archive/$_gittag.tar.gz
|
||||
suckless-patchers-$_patchertag.tar.gz::https://github.com/jaimecgomezz/suckless-patchers/archive/$_patchertag.tar.gz
|
||||
qvm-passmenu.sh
|
||||
"
|
||||
builddir="$srcdir"/dmenu-$_gittag
|
||||
|
||||
prepare() {
|
||||
default_prepare
|
||||
|
||||
if [ ! -f handle ]; then
|
||||
cp "$srcdir"/suckless-patchers-$_patchertag/handle .
|
||||
# neutering handle from building
|
||||
sed -i '/build_distro/d' handle
|
||||
fi
|
||||
msg "Applying patches with handle"
|
||||
for i in $_patchlist; do
|
||||
echo "Applying $i"
|
||||
./handle patch $i
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
make all
|
||||
}
|
||||
|
||||
package() {
|
||||
make DESTDIR="$pkgdir" PREFIX="/usr" install
|
||||
install -Dm755 "$builddir"/scripts/* "$pkgdir"/usr/bin/.
|
||||
install -Dm755 "$srcdir"/qvm-passmenu.sh "$pkgdir"/usr/bin/qvm-passmenu
|
||||
}
|
||||
sha512sums="
|
||||
5d51ce72d83c5e4f4c010c9555f219742367b9828f75d103a074e105353602c511a5e80b0f297f7b5bf6c591883a2adae8b16153385f22932b1d493c6afacdf4 qubes-dmenu-a3de0c2ece478aaeaaff5aec60887e683f2a8ce0.tar.gz
|
||||
4f8a0acb3655806981e3f302bc762292613b05141b568177e573b939bf6163ba950936a27febdaeb2939c660fbbbc943a24c6733cddeb0927fb24eef9fdf618d suckless-patchers-6417335f09f0d2fb2faec78c5702a1ef9a19ab02.tar.gz
|
||||
6b0c299253f902b5997696ba8780f2ad41c086b063035190565fc0c2c99d7e5f7236685a035db89972bf51029be7acd45f89eb634e15f7a2fd6998d6190c204d qvm-passmenu.sh
|
||||
"
|
||||
|
23
user/qubes-dmenu/qvm-passmenu.sh
Normal file
23
user/qubes-dmenu/qvm-passmenu.sh
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
shopt -s nullglob globstar
|
||||
|
||||
typeit=0
|
||||
if [[ $1 == "--type" ]]; then
|
||||
typeit=1
|
||||
shift
|
||||
fi
|
||||
cmd=$(echo "list-files" | base64 -w 0)
|
||||
password_files=($( echo ${cmd} | /usr/lib/qubes/qrexec-client-vm "$QUBES_PASS_DOMAIN" ruddo.PassQuery | sed 's/\..\{3\}$//'))
|
||||
password=$(printf '%s\n' "${password_files[@]}" | dmenu "$@")
|
||||
|
||||
[[ -n $password ]] || exit
|
||||
|
||||
if [[ $typeit -eq 0 ]]; then
|
||||
qvm-pass "$password" 2>/dev/null | xsel -i -p && xsel -o -p | xsel -i -b
|
||||
sleep 10
|
||||
echo | xsel -i -p && xsel -o -p | xsel -i -b
|
||||
else
|
||||
qvm-pass "$password" | { IFS= read -r pass; printf %s "$pass"; } |
|
||||
xdotool type --clearmodifiers --file -
|
||||
fi
|
Loading…
Reference in a new issue