SHA256
1
0
forked from pool/hypridle

Accepting request 1165371 from home:-miska-

Add new package - hypridle

OBS-URL: https://build.opensuse.org/request/show/1165371
OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/hypridle?expand=0&rev=1
This commit is contained in:
Jan Engelhardt 2024-04-04 22:33:00 +00:00 committed by Git OBS Bridge
commit bbb3372fd6
7 changed files with 141 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

16
_service Normal file
View File

@ -0,0 +1,16 @@
<services>
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/hyprwm/hypridle.git</param>
<param name="scm">git</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="versionrewrite-pattern">v(.*)</param>
<param name="revision">@PARENT_TAG@</param>
<param name="submodule">enable</param>
</service>
<service name="tar" mode="manual" />
<service name="recompress" mode="manual">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="manual" />
</services>

3
hypridle-0.1.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94e5e7a196446ba337e591d376167075cb7dc5b147233b17f429d0443e3c9c2c
size 11616

4
hypridle.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Apr 4 21:39:19 UTC 2024 - Michal Hrusecky <michal.hrusecky@opensuse.org>
- Initial package for hypridle version 0.1.1

34
hypridle.conf Normal file
View File

@ -0,0 +1,34 @@
general {
lock_cmd = pidof hyprlock || hyprlock # avoid starting multiple hyprlock instances.
before_sleep_cmd = loginctl lock-session # lock before suspend.
after_sleep_cmd = hyprctl dispatch dpms on # to avoid having to press a key twice to turn on the display.
}
listener {
timeout = 150 # 2.5min.
on-timeout = brightnessctl -s set 10 # set monitor backlight to minimum, avoid 0 on OLED monitor.
on-resume = brightnessctl -r # monitor backlight restor.
}
# turn off keyboard backlight, uncomment this section if have keyboard backlight.
listener {
timeout = 150 # 2.5min.
on-timeout = brightnessctl -sd rgb:kbd_backlight set 0 # turn off keyboard backlight.
on-resume = brightnessctl -rd rgb:kbd_backlight # turn on keyboard backlight.
}
listener {
timeout = 300 # 5min
on-timeout = loginctl lock-session # lock screen when timeout has passed
}
listener {
timeout = 380 # 5.5min
on-timeout = hyprctl dispatch dpms off # screen off when timeout has passed
on-resume = hyprctl dispatch dpms on # screen on when activity is detected after timeout has fired.
}
listener {
timeout = 1800 # 30min
on-timeout = systemctl suspend # suspend pc
}

60
hypridle.spec Normal file
View File

@ -0,0 +1,60 @@
#
# spec file for package hypridle
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: hypridle
Version: 0.1.1
Release: 0
Summary: Hyprland's idle daemon
License: BSD-3-Clause
URL: https://wiki.hyprland.org/hypr-ecosystem/hypridle
Source0: %{name}-%{version}.tar.xz
Source1: hypridle.conf
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: pkgconfig(hyprlang) >= 0.4.2
BuildRequires: pkgconfig(sdbus-c++)
BuildRequires: pkgconfig(wayland-client)
BuildRequires: pkgconfig(wayland-protocols)
BuildRequires: pkg-config
%description
Hyprland's idle daemon
* 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)
%prep
%autosetup
%build
%cmake
%cmake_build
%install
%cmake_install
install -Dm 0644 %{SOURCE1} %buildroot/%_docdir/%name/hypridle.conf.example
%files
%license LICENSE
%doc README.md hypridle.conf.example
%{_bindir}
%{_bindir}/hypridle
%changelog