Version 0.1

This commit is contained in:
Radu Macocian
2026-06-04 14:48:09 +02:00
commit 41abe1dcf9
15 changed files with 2003 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
# Maintainer: Radu Macocian <radu@macocian.com>
pkgname=omni-launcher
pkgver=0.1.0
pkgrel=1
pkgdesc="Application launcher overlay built on Quickshell, with calculator, unit/currency conversion, unicode search and Giphy search"
arch=('any')
url="https://github.com/admac/omni-launcher"
license=('GPL-3.0-or-later')
depends=('quickshell' 'wl-clipboard' 'curl' 'python' 'glib2')
optdepends=('hyprland: close-on-workspace-change and focus-grab integration')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('SKIP')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -dm755 "$pkgdir/usr/share/$pkgname"
install -m644 qml/* "$pkgdir/usr/share/$pkgname/"
install -Dm755 bin/omni-launcher "$pkgdir/usr/bin/omni-launcher"
install -Dm755 bin/omni-launcher-toggle "$pkgdir/usr/bin/omni-launcher-toggle"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
}