2024-08-28 13:52:43 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: let
|
2025-03-26 19:16:28 +01:00
|
|
|
# inherit (config.modules.style) cursor;
|
2024-08-28 13:52:43 +02:00
|
|
|
inherit (builtins) toString;
|
|
|
|
in {
|
2024-11-04 12:35:21 +01:00
|
|
|
programs.hyprland.settings = {
|
|
|
|
# Hyprland settings
|
|
|
|
# Programs which get executed at Hyprland start.
|
|
|
|
exec-once = [
|
2025-03-26 19:16:28 +01:00
|
|
|
# "hyprctl setcursor ${cursor.name} ${toString cursor.size}"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
2024-11-04 12:35:21 +01:00
|
|
|
"[workspace special:keepassxc; silent;tile] ${pkgs.keepassxc}/bin/keepassxc"
|
|
|
|
"[workspace special:audio; silent;tile] ${pkgs.pwvucontrol}/bin/pwvucontrol"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
2024-11-04 12:35:21 +01:00
|
|
|
"${pkgs.swww}/bin/swww-daemon"
|
2024-08-28 13:52:43 +02:00
|
|
|
|
2024-11-04 12:35:21 +01:00
|
|
|
"${pkgs.wlsunset}/bin/wlsunset -S 06:00 -s 20:00"
|
|
|
|
"${pkgs.lxqt.lxqt-policykit}/bin/lxqt-policykit-agent"
|
2024-11-06 10:50:08 +01:00
|
|
|
"hyprctl dispatch split-workspace 1"
|
2024-11-04 12:35:21 +01:00
|
|
|
];
|
2024-08-28 13:52:43 +02:00
|
|
|
};
|
|
|
|
}
|