notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
Port details on branch 2025Q1
hypridle Hyprland's idle daemon
0.1.5_2 x11 on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 0.1.5_2Version of this port present on the latest quarterly branch.
Maintainer: jbeich@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2025-03-29 00:27:15
Last Update: 2025-03-29 00:23:37
Commit Hash: 43a5796
Also Listed In: wayland
License: BSD3CLAUSE
WWW:
https://github.com/hyprwm/hypridle
Description:
Hyprland's idle daemon. Requires logind or consolekit2 session. Features: - based on the ext-idle-notify-v1 wayland protocol - support for dbus' loginctl commands (lock / unlock / before-sleep) - support for dbus' inhibit (used by e.g. firefox / steam)
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (6 items)
Collapse this list.
  1. bin/hypridle
  2. lib/systemd/user/hypridle.service
  3. share/hypr/hypridle.conf
  4. /usr/local/share/licenses/hypridle-0.1.5_2/catalog.mk
  5. /usr/local/share/licenses/hypridle-0.1.5_2/LICENSE
  6. /usr/local/share/licenses/hypridle-0.1.5_2/BSD3CLAUSE
Collapse this list.
Dependency lines:
  • hypridle>0:x11/hypridle
To install the port:
cd /usr/ports/x11/hypridle/ && make install clean
To add the package, run one of these commands:
  • pkg install x11/hypridle
  • pkg install hypridle
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: hypridle
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1730561387 SHA256 (hyprwm-hypridle-v0.1.5_GH0.tar.gz) = 174d4b4706ec5c79e6d80a7cc3b297b5564c923f60f408c1638b55424a998a4b SIZE (hyprwm-hypridle-v0.1.5_GH0.tar.gz) = 13946

Packages (timestamps in pop-ups are UTC):
hypridle
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest0.1.5_30.1.5_3-0.1.5_30.1.6---
FreeBSD:13:quarterly0.1.5_10.1.5_2-0.1.5_10.1.5_2---
FreeBSD:14:latest0.1.5_30.1.6-0.1.5_30.1.6---
FreeBSD:14:quarterly0.1.5_10.1.5_2-0.1.5_10.1.5_2---
FreeBSD:15:latest0.1.5_30.1.5_3n/a0.1.5_3n/a--0.1.0
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. wayland-protocols>0 : graphics/wayland-protocols
  2. cmake : devel/cmake-core
  3. ninja : devel/ninja
  4. pkgconf>=1.3.0_1 : devel/pkgconf
Library dependencies:
  1. libhyprlang.so : devel/hyprlang
  2. libhyprutils.so : devel/hyprutils
  3. libsdbus-c++.so : devel/sdbus-cpp
  4. libwayland-client.so : graphics/wayland
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
x11_hypridle
USES:
compiler:c++11-lib cmake pkgconfig
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/hyprwm/hypridle/tar.gz/v0.1.5?dummy=/
Collapse this list.

Number of commits found: 1

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
0.1.5_2
29 Mar 2025 00:23:37
commit hash: 43a57966722604d4717e1f08b343176b78c13456commit hash: 43a57966722604d4717e1f08b343176b78c13456commit hash: 43a57966722604d4717e1f08b343176b78c13456commit hash: 43a57966722604d4717e1f08b343176b78c13456 files touched by this commit
Jan Beich (jbeich) search for other commits by this committer
x11/hypridle: avoid casting integer to string

src/core/Hypridle.cpp:508:131: error: non-constant-expression cannot be narrowed
from type 'pid_t' (aka 'int') to 'uint32_t' (aka 'unsigned int') in initializer
list [-Wc++11-narrowing]
  508 |        
proxy->callMethod("GetSessionByPID").onInterface("org.freedesktop.ConsoleKit.Manager").withArguments(std::string{uint32_t{getpid()}}).storeResultsTo(path);
      |                                                                         
                                                         ^~~~~~~~
src/core/Hypridle.cpp:508:131: note: insert an explicit cast to silence this
issue
  508 |        
proxy->callMethod("GetSessionByPID").onInterface("org.freedesktop.ConsoleKit.Manager").withArguments(std::string{uint32_t{getpid()}}).storeResultsTo(path);
      |                                                                         
                                                         ^~~~~~~~
      |                                                                         
                                                         static_cast<uint32_t>(
)
src/core/Hypridle.cpp:508:122: error: non-constant-expression cannot be narrowed
from type 'uint32_t' (aka 'unsigned int') to 'char' in initializer list
[-Wc++11-narrowing]
  508 |        
proxy->callMethod("GetSessionByPID").onInterface("org.freedesktop.ConsoleKit.Manager").withArguments(std::string{uint32_t{getpid()}}).storeResultsTo(path);
      |                                                                         
                                                ^~~~~~~~~~~~~~~~~~
src/core/Hypridle.cpp:508:122: note: insert an explicit cast to silence this
issue
  508 |        
proxy->callMethod("GetSessionByPID").onInterface("org.freedesktop.ConsoleKit.Manager").withArguments(std::string{uint32_t{getpid()}}).storeResultsTo(path);
      |                                                                         
                                                ^~~~~~~~~~~~~~~~~~
      |                                                                         
                                                static_cast<char>()

Exposed by -Wno-narrowing removal in v0.1.6.

(cherry picked from commit 054bf3111cfe945baee5bd84f37023b1e9afb607)

Number of commits found: 1