Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions srcpkgs/hyprlauncher/template
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Template file for 'hyprlauncher'
pkgname=hyprlauncher
version=0.1.5
revision=1
build_style=cmake
configure_args="--no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release"
hostmakedepends="cmake hyprwire pkg-config"
makedepends="cairo-devel fontconfig-devel hyprlang hyprtoolkit hyprutils hyprwire
icu-devel libdrm-devel libqalculate-devel libxkbcommon-devel pango-devel pixman-devel"
depends="wl-clipboard"
short_desc="Multipurpose and versatile launcher / picker for Hyprland"
maintainer="Encoded14 <linusken@posteo.com>"
license="BSD-3-Clause"
homepage="https://github.com/hyprwm/hyprlauncher"
changelog="https://github.com/hyprwm/${pkgname}/releases"
distfiles="https://github.com/hyprwm/${pkgname}/archive/refs/tags/v${version}.tar.gz"
checksum=907bf3ce39699d565d49adff1f9b2baee4b59fbb0c1c2b1ec41814f05065bec7

post_install() {
vlicense LICENSE
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
+#include <cstring>

using namespace Hyprutils::Memory;

14 changes: 14 additions & 0 deletions srcpkgs/hyprpwcenter/patches/fix-append-range.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
--- a/src/ui/graph/GraphNode.cpp 2026-02-10 15:41:09.000000000 +0100
+++ b/src/ui/graph/GraphNode.cpp 2026-03-08 19:37:25.668189805 +0100
@@ -80,9 +80,9 @@
const auto& p = m_node->m_ports.at(i);

if (p->m_output)
- outputVec.append_range(p->m_channels);
+ outputVec.insert(outputVec.end(), p->m_channels.begin(), p->m_channels.end());
else
- inputVec.append_range(p->m_channels);
+ inputVec.insert(inputVec.end(), p->m_channels.begin(), p->m_channels.end());
}

size_t maxRows = std::max(inputVec.size(), outputVec.size());
20 changes: 20 additions & 0 deletions srcpkgs/hyprpwcenter/template
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Template file for 'hyprpwcenter'
pkgname=hyprpwcenter
version=0.1.2
revision=1
build_style=cmake
configure_args="--no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release"
hostmakedepends="cmake pkg-config"
makedepends="cairo-devel hyprtoolkit hyprutils libdrm-devel pipewire-devel
libxkbcommon-devel pango-devel pixman-devel"
short_desc="GUI Pipewire control center built with hyprtoolkit"
maintainer="Encoded14 <linusken@posteo.com>"
license="BSD-3-Clause"
homepage="https://github.com/hyprwm/hyprpwcenter"
changelog="https://github.com/hyprwm/${pkgname}/releases"
distfiles="https://github.com/hyprwm/${pkgname}/archive/refs/tags/v${version}.tar.gz"
checksum=ab4cfd4710566b07e98973d6723c24802d95774aa9c02aca839ff03e3bf09659

post_install() {
vlicense LICENSE
}
10 changes: 10 additions & 0 deletions srcpkgs/hyprshutdown/patches/fix-musl-cstring.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
--- a/src/state/HyprlandIPC.cpp 2026-01-27 22:57:41.000000000 +0100
+++ b/src/state/HyprlandIPC.cpp 2026-03-08 20:23:18.392289081 +0100
@@ -14,6 +14,7 @@
#include <algorithm>
#include <charconv>
#include <csignal>
+#include <cstring>

#include <hyprutils/memory/Casts.hpp>
#include <hyprutils/utils/ScopeGuard.hpp>
20 changes: 20 additions & 0 deletions srcpkgs/hyprshutdown/template
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Template file for 'hyprshutdown'
pkgname=hyprshutdown
version=0.1.0
revision=1
build_style=cmake
configure_args="--no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release"
hostmakedepends="cmake pkg-config"
makedepends="cairo-devel glaze hyprtoolkit hyprutils libdrm-devel libxkbcommon-devel
pango-devel pixman-devel"
short_desc="Graceful shutdown/logout utility for Hyprland"
maintainer="Encoded14 <linusken@posteo.com>"
license="BSD-3-Clause"
homepage="https://github.com/hyprwm/hyprshutdown"
changelog="https://github.com/hyprwm/${pkgname}/releases"
distfiles="https://github.com/hyprwm/${pkgname}/archive/refs/tags/v${version}.tar.gz"
checksum=28b125c6d8406029b59beacb77aa080d5d8905239b1006c94c7307f1997e6819

post_install() {
vlicense LICENSE
}