Port details |
- hypridle Hyprland's idle daemon
- 0.1.7 x11
=2 0.1.6_3Version of this port present on the latest quarterly branch. - Maintainer: tagattie@FreeBSD.org
 - Port Added: 2024-02-23 04:15:06
- Last Update: 2025-08-28 08:01:03
- Commit Hash: 4fed32e
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py311-PyOpenGL, p5-Sane
- 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 = 1756366995
SHA256 (hyprwm-hypridle-v0.1.7_GH0.tar.gz) = c4ef2e2894fc2082cfdabe7db086b1f246e3f0de571f7f2c6b26d7c0d9a5f8f3
SIZE (hyprwm-hypridle-v0.1.7_GH0.tar.gz) = 18986
No package information for this port in our database- Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link:

- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- hyprland-protocols>=0.6.0 : graphics/hyprland-protocols
- hyprwayland-scanner>=0.4.4 : devel/hyprwayland-scanner
- 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:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
0.1.7 28 Aug 2025 08:01:03
    |
Hiroki Tagato (tagattie)  |
x11/hypridle: update to 0.1.7
Changelog: https://github.com/hyprwm/hypridle/releases/tag/v0.1.7
Reported by: GitHub (watch releases) |
0.1.6_5 07 Aug 2025 11:01:56
    |
Hiroki Tagato (tagattie)  Author: fgorter |
x11/hypridle: add patch to avoid illegal hardware instruction on startup
The issue is also reported at:
https://github.com/hyprwm/hypridle/issues/68
While here, use hyprland-protocols from ports.
PR: 288679
Reported by: fgorter <fgorter@gmail.com>
Obtained
from: https://github.com/hyprwm/hypridle/issues/68#issuecomment-2428697344 |
0.1.6_4 20 Jul 2025 11:02:01
    |
Hiroki Tagato (tagattie)  |
*/*: bump port revision after hyprutils shlib version bump (39d792813677) |
0.1.6_3 17 Jul 2025 06:02:30
    |
Hiroki Tagato (tagattie)  |
hyprland-related ports: take maintainership
MFH: 2025Q3 |
0.1.6_2 03 Jul 2025 03:44:31
    |
Jan Beich (jbeich)  |
x11/hypridle: drop maintainership |
0.1.6_2 01 May 2025 00:59:49
    |
Jan Beich (jbeich)  |
devel/hyprutils: update to 0.7.0
Changes: https://github.com/hyprwm/hyprutils/releases/tag/v0.7.0
Reported by: GitHub (watch releases) |
0.1.6_1 07 Apr 2025 19:27:52
    |
Jan Beich (jbeich)  |
devel/hyprutils: update to 0.6.0
Changes: https://github.com/hyprwm/hyprutils/releases/tag/v0.6.0
Reported by: GitHub (watch releases) |
0.1.6 29 Mar 2025 00:18:59
    |
Jan Beich (jbeich)  |
x11/hypridle: update to 0.1.6
Changes: https://github.com/hyprwm/hypridle/releases/tag/v0.1.6
Reported by: GitHub (watch releases) |
0.1.5_4 29 Mar 2025 00:18:57
    |
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. |
0.1.5_3 28 Jan 2025 00:58:41
    |
Jan Beich (jbeich)  |
devel/hyprutils: update to 0.5.0
Changes: https://github.com/hyprwm/hyprutils/releases/tag/v0.5.0
Reported by: GitHub (watch releases) |
0.1.5_2 24 Jan 2025 20:18:31
    |
Jan Beich (jbeich)  |
devel/hyprutils: update to 0.4.0
Changes: https://github.com/hyprwm/hyprutils/releases/tag/v0.4.0
Reported by: GitHub (watch releases) |
0.1.5_1 23 Dec 2024 23:03:03
    |
Jan Beich (jbeich)  |
devel/hyprutils: update to 0.3.0
Changes: https://github.com/hyprwm/hyprutils/releases/tag/v0.3.0
Reported by: GitHub (watch releases) |
0.1.5 02 Nov 2024 17:19:28
    |
Jan Beich (jbeich)  |
x11/hypridle: update to 0.1.5
Changes: https://github.com/hyprwm/hypridle/releases/tag/v0.1.5
Reported by: GitHub (watch releases) |
0.1.4 23 Oct 2024 09:36:22
    |
Jan Beich (jbeich)  |
x11/hypridle: update to 0.1.4
Changes: https://github.com/hyprwm/hypridle/releases/tag/v0.1.4
Reported by: GitHub (watch releases) |
0.1.3 23 Oct 2024 09:36:20
    |
Jan Beich (jbeich)  |
devel/sdbus-cpp: update to 2.0.0
Changes: https://github.com/Kistler-Group/sdbus-cpp/releases/tag/v2.0.0
Reported by: GitHub (watch releases) |
0.1.3 22 Oct 2024 00:54:11
    |
Jan Beich (jbeich)  |
x11/hypridle: update to 0.1.3
Changes: https://github.com/hyprwm/hypridle/releases/tag/v0.1.3
Reported by: GitHub (watch releases) |
0.1.2 01 Oct 2024 18:56:20
    |
Rene Ladan (rene)  |
all: drop support for expired FreeBSD 14.0
Simplify expressions for FreeBSD 13.X
Reviewed by: many
Differential Revision: https://reviews.freebsd.org/D46601 |
0.1.2 10 Jun 2024 16:55:08
    |
Jan Beich (jbeich)  |
*: move FreeBSD 14.0 EOL to 2024Q4
FreeBSD 14.1 was released on 2024-06-04. The transition period is at
least 3 months but usually rounded up to almost 4 months. |
0.1.2 18 Apr 2024 23:00:21
    |
Jan Beich (jbeich)  |
x11/hypridle: update to 0.1.2
Changes: https://github.com/hyprwm/hypridle/releases/tag/v0.1.2
Reported by: GitHub (watch releases) |
0.1.1_1 08 Mar 2024 18:30:15
    |
Jan Beich (jbeich)  |
devel/hyprlang: update to 0.5.0
Changes: https://github.com/hyprwm/hyprlang/releases/tag/v0.5.0
Reported by: GitHub (watch releases) |
0.1.1 28 Feb 2024 16:36:26
    |
Jan Beich (jbeich)  |
x11/hypridle: update to 0.1.1
Changes: https://github.com/hyprwm/hypridle/releases/tag/v0.1.1
Reported by: GitHub (watch releases) |
0.1.0 27 Feb 2024 16:51:15
    |
Jan Beich (jbeich)  |
x11/hypridle: unbreak build with libc++ 16
In file included from src/config/ConfigManager.cpp:1:
In file included from src/config/ConfigManager.hpp:3:
src/config/../helpers/Log.hpp:56:27: error: no member named 'vformat' in
namespace 'std'
std::cout << std::vformat(fmt, std::make_format_args(args...)) << "\n";
~~~~~^
src/config/../helpers/Log.hpp:56:45: error: no member named 'make_format_args'
in namespace 'std'
std::cout << std::vformat(fmt, std::make_format_args(args...)) << "\n";
~~~~~^
Reported by: pkg-fallout |
0.1.0 26 Feb 2024 13:14:11
    |
Jan Beich (jbeich)  |
x11/hypridle: adjust consolekit2 comment |
0.1.0 23 Feb 2024 04:12:13
    |
Jan Beich (jbeich)  |
x11/hypridle: add new port
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)
https://github.com/hyprwm/hypridle |