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
+13
View File
@@ -0,0 +1,13 @@
{pkgs, ...}: {
home.packages = [
pkgs.playerctl
];
wayland.windowManager.hyprland.settings = {
bindl = [
", XF86AudioPlay, exec, playerctl play-pause && notify-send -u low -t 1000 \"Media\" \"$(playerctl status)\""
", XF86AudioPrev, exec, playerctl previous && notify-send -u low -t 1000 \"Previous Track\" \"$(playerctl metadata title)\""
", XF86AudioNext, exec, playerctl next && notify-send -u low -t 1000 \"Next Track\" \"$(playerctl metadata title)\""
]; # FIXME: not working
};
}