Port details on branch 2025Q1 |
- hypridle Hyprland's idle daemon
- 0.1.5_2 x11
=0 0.1.5_2Version of this port present on the latest quarterly branch. - Maintainer: jbeich@FreeBSD.org
 - 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)
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- 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):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- wayland-protocols>0 : graphics/wayland-protocols
- cmake : devel/cmake-core
- ninja : devel/ninja
- pkgconf>=1.3.0_1 : devel/pkgconf
- Library dependencies:
-
- libhyprlang.so : devel/hyprlang
- libhyprutils.so : devel/hyprutils
- libsdbus-c++.so : devel/sdbus-cpp
- 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:
|
Number of commits found: 1
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.1.5_2 29 Mar 2025 00:23:37
    |
Jan Beich (jbeich)  |
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
|