refactor(hypr): separated even mooore

This commit is contained in:
kenji
2026-01-02 12:26:36 -06:00
parent a2acedf2bb
commit d667dbdb91
10 changed files with 45 additions and 30 deletions
+18
View File
@@ -0,0 +1,18 @@
{pkgs, ...}: {
services.swayosd.enable = true;
wayland.windowManager.hyprland.settings = {
exec-once = [
"uwsm app -- swayosd-server"
];
bindel = [
", XF86AudioRaiseVolume, exec, swayosd-client --output-volume raise"
", XF86AudioLowerVolume, exec, swayosd-client --output-volume lower"
];
bindl = [
", XF86AudioMute, exec, swayosd-client --output-volume mute-toggle"
", Caps_Lock, exec, swayosd-client --caps-lock"
", XF86AudioMute, exec, swayosd-client --output-volume mute-toggle"
];
};
}