blob: 340722a84b3517400b9fb767d4be9141eec2cac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: sineptic <sineptic0@gmail.com>
pkgsubn=vimium
pkgname=hdrop-git
pkgver=0.4.7.9cd5a1c
pkgrel=1
pkgdesc="Emulate 'tdrop' in Hyprland (run, show and hide programs via keybind - similar to a dropdown terminal)"
url="https://github.com/Schweber/hdrop"
license=('AGPL-3.0')
arch=('any')
depends=(
libnotify
jq
bash
awk
hyprland
)
makedepends=(
git
)
package() {
git clone $url
cd hdrop
make all && sudo make install
}
|