hyprland/exec.nix: add uwsm finalize

This commit is contained in:
Bloxx12 2025-04-09 15:31:18 +02:00
commit e810a89232

View file

@ -1,15 +1,17 @@
{
config,
lib,
pkgs,
...
}: let
# inherit (config.modules.style) cursor;
inherit (builtins) toString;
in {
programs.hyprland.settings = {
# Hyprland settings
# Programs which get executed at Hyprland start.
exec-once = [
"uwsm finalize"
"hyprctl setcursor BreezeX-RosePine-Linux 32"
"[workspace special:keepassxc; silent;tile] ${pkgs.keepassxc}/bin/keepassxc"
@ -22,6 +24,7 @@ in {
"${pkgs.wlsunset}/bin/wlsunset -S 06:00 -s 20:00"
"${pkgs.lxqt.lxqt-policykit}/bin/lxqt-policykit-agent"
"hyprctl dispatch split-workspace 1"
];
};
}