mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
50 lines
1.4 KiB
Bash
50 lines
1.4 KiB
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Noctalia Configuration for Quickshell"
|
|
HOMEPAGE="https://github.com/noctalia-dev/noctalia-shell"
|
|
SRC_URI="https://github.com/noctalia-dev/noctalia-shell/releases/download/v${PV}/noctalia-v${PV}.tar.gz"
|
|
|
|
S="${WORKDIR}/noctalia-release"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="cliphist cava wlsunset xdg-desktop-portal evolution-data-server polkit-kde-agent matugen xwayland"
|
|
|
|
inherit systemd
|
|
|
|
RDEPEND="
|
|
gui-apps/quickshell
|
|
media-video/gpu-screen-recorder
|
|
app-misc/brightnessctl
|
|
"
|
|
|
|
# Optional dependencies
|
|
RDEPEND="${RDEPEND}
|
|
cliphist? ( app-misc/cliphist )
|
|
cava? ( media-sound/cava )
|
|
wlsunset? ( gui-apps/wlsunset )
|
|
xdg-desktop-portal? ( sys-apps/xdg-desktop-portal )
|
|
evolution-data-server? ( gnome-extra/evolution-data-server )
|
|
polkit-kde-agent? ( kde-plasma/polkit-kde-agent )
|
|
matugen? ( x11-misc/matugen )
|
|
xwayland? ( gui-apps/xwayland-satellite )
|
|
"
|
|
|
|
src_install() {
|
|
# Install configuration files
|
|
insinto /etc/xdg/quickshell/noctalia-shell
|
|
doins -r .
|
|
|
|
# Install systemd unit
|
|
systemd_douserunit Assets/Services/systemd/noctalia.service
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "Noctalia Quickshell configuration has been installed to /etc/xdg/quickshell/noctalia-shell."
|
|
elog "Note: uninstalling this package will not remove this configuration, so if you intend to keep using Quickshell you may want to remove it manually."
|
|
}
|