11 lines
311 B
Bash
11 lines
311 B
Bash
# Portage hooks
|
|
|
|
post_pkg_postinst() {
|
|
case "${CATEGORY}/${PN}" in
|
|
gui-wm/hyprland)
|
|
sed -i 's|Exec=.*|Exec=/usr/local/bin/start-hyprland-dbus|' /usr/share/wayland-sessions/hyprland.desktop
|
|
einfo "Updated hyprland.desktop to use start-hyprland-dbus"
|
|
;;
|
|
esac
|
|
}
|