feat(hypr wim): hypridle -> acpid
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
Updater 2024-05-29 12:30:14 -04:00
parent bd5b0dcec8
commit a72a054632
5 changed files with 62 additions and 35 deletions

Binary file not shown.

BIN
flake.nix

Binary file not shown.

View file

@ -142,11 +142,6 @@ let
repo = "Hyprspace"; repo = "Hyprspace";
}; };
hypridle = mkDep {
owner = "hyprwm";
repo = "hypridle";
};
grim-hyprland = mkDep { grim-hyprland = mkDep {
owner = "eriedaberrie"; owner = "eriedaberrie";
repo = "grim-hyprland"; repo = "grim-hyprland";

View file

@ -207,9 +207,10 @@ const on_finished = () => {
lock.connect('finished', on_finished); lock.connect('finished', on_finished);
if (Vars.hasFprintd) { if (Vars.hasFprintd) {
Utils.authenticate('') globalThis.authFinger = () => Utils.authenticate('')
.then(() => unlock()) .then(() => unlock())
.catch(logError); .catch(logError);
globalThis.authFinger();
} }

View file

@ -1,27 +1,38 @@
{ {
config, config,
hypridle,
lib, lib,
pkgs, pkgs,
... ...
}: let }: let
inherit (lib) mkIf optionals; inherit (lib) mkIf;
inherit (config.vars) mainUser; inherit (config.vars) mainUser;
isLaptop = config.services.logind.lidSwitch == "lock"; isLaptop = config.services.logind.lidSwitch == "lock";
in {
imports = [
../greetd
];
services.gnome.gnome-keyring.enable = true;
home-manager.users.${mainUser} = let
hmCfg = config.home-manager.users.${mainUser}; hmCfg = config.home-manager.users.${mainUser};
agsPkg = hmCfg.programs.ags.finalPackage;
hyprPkg = hmCfg.wayland.windowManager.hyprland.finalPackage;
runInDesktop = pkgs.writeShellApplication {
name = "runInDesktop";
runtimeInputs = [
pkgs.sudo
agsPkg
hyprPkg
];
text = ''
user="$(id -u ${mainUser})"
sig="$(ls "/run/user/$user/hypr/")"
export HYPRLAND_INSTANCE_SIGNATURE="$sig"
sudo -Eu ${mainUser} hyprctl dispatch exec "$@"
'';
};
lockPkg = pkgs.writeShellApplication { lockPkg = pkgs.writeShellApplication {
name = "lock"; name = "lock";
runtimeInputs = [ runtimeInputs = [
hmCfg.programs.ags.finalPackage agsPkg
]; ];
text = '' text = ''
ags -r 'Tablet.setLaptopMode()' ags -r 'Tablet.setLaptopMode()'
@ -29,26 +40,46 @@ in {
''; '';
}; };
in { in {
imports = [
../greetd
];
services.gnome.gnome-keyring.enable = true;
services.acpid = mkIf isLaptop {
enable = true;
lidEventCommands = ''
LID="/proc/acpi/button/lid/LID/state"
state=$(cat "$LID" | ${pkgs.gawk}/bin/awk '{print $2}')
case "$state" in
*open*)
${runInDesktop}/bin/runInDesktop "ags -b lockscreen -r 'authFinger()'"
;;
*close*)
${runInDesktop}/bin/runInDesktop ${lockPkg}/bin/lock
;;
*)
logger -t lid-handler "Failed to detect lid state ($state)"
;;
esac
'';
};
home-manager.users.${mainUser} = {
home.packages = [ home.packages = [
pkgs.gnome.seahorse pkgs.gnome.seahorse
lockPkg lockPkg
]; ];
services.hypridle = mkIf isLaptop {
enable = true;
package = hypridle.packages.${pkgs.system}.default;
settings.general.lock_cmd = "${lockPkg}/bin/lock";
};
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
settings = { settings = {
exec-once = exec-once = [
[
"gnome-keyring-daemon --start --components=secrets" "gnome-keyring-daemon --start --components=secrets"
"${pkgs.plasma5Packages.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1" "${pkgs.plasma5Packages.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1"
]
++ optionals isLaptop [
"systemctl --user restart hypridle"
]; ];
windowrule = [ windowrule = [