gui-apps/noctalia-shell: Correct indentation in ebuild.

Signed-off-by: Luke Gompertz <luke.gompz@gmail.com>
This commit is contained in:
Luke Gompertz
2025-12-25 09:42:30 +00:00
parent c2b704786c
commit 48389c0b59

View File

@@ -15,21 +15,21 @@ KEYWORDS="~amd64"
IUSE="cliphist cava wlsunset xdg-desktop-portal evolution-data-server polkit-kde-agent matugen xwayland" IUSE="cliphist cava wlsunset xdg-desktop-portal evolution-data-server polkit-kde-agent matugen xwayland"
RDEPEND=" RDEPEND="
gui-apps/quickshell gui-apps/quickshell
media-video/gpu-screen-recorder media-video/gpu-screen-recorder
app-misc/brightnessctl app-misc/brightnessctl
" "
# Optional dependencies # Optional dependencies
RDEPEND="${RDEPEND} RDEPEND="${RDEPEND}
cliphist? ( app-misc/cliphist ) cliphist? ( app-misc/cliphist )
cava? ( media-sound/cava ) cava? ( media-sound/cava )
wlsunset? ( gui-apps/wlsunset ) wlsunset? ( gui-apps/wlsunset )
xdg-desktop-portal? ( sys-apps/xdg-desktop-portal ) xdg-desktop-portal? ( sys-apps/xdg-desktop-portal )
evolution-data-server? ( gnome-extra/evolution-data-server ) evolution-data-server? ( gnome-extra/evolution-data-server )
polkit-kde-agent? ( kde-plasma/polkit-kde-agent ) polkit-kde-agent? ( kde-plasma/polkit-kde-agent )
matugen? ( x11-misc/matugen ) matugen? ( x11-misc/matugen )
xwayland? ( gui-apps/xwayland-satellite ) xwayland? ( gui-apps/xwayland-satellite )
" "
src_unpack() { src_unpack() {
@@ -37,15 +37,14 @@ default_src_unpack
} }
src_install() { src_install() {
# Create the configuration directory # Create the configuration directory
dodir "/etc/xdg/quickshell/noctalia-shell" dodir "/etc/xdg/quickshell/noctalia-shell"
# Install the configuration files # Install the configuration files
cp -r "${S}"/* "${ED}/etc/xdg/quickshell/noctalia-shell/" || die cp -r "${S}"/* "${ED}/etc/xdg/quickshell/noctalia-shell/" || die
} }
# Metadata for installation
pkg_postinst() { pkg_postinst() {
elog "Noctalia Quickshell configuration has been installed to /etc/xdg/quickshell/noctalia-shell." 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." 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."
} }