nixos/home/hyprland/waybar/modules/mpris.nix
Evie Litherland-Smith bf63458b2e Add playerctl and mpris module to waybar
Fix hyprland binds for audio and brightness
2023-08-03 10:37:36 +01:00

19 lines
445 B
Nix

{
"format" = "{player_icon} {dynamic} {status_icon}";
"format-paused" = "{player_icon} <i>{title}</i> {status_icon}";
"format-stopped" = "{player_icon} {status_icon}";
"interval" = 1;
"player-icons" = {
"default" = "󰝚";
"mpv" = "󰝚";
"spotify" = "󰓇";
"ncspot" = "󰓇";
};
"status-icons" = {
"playing" = "󰐊";
"paused" = "󰏤";
"stopped" = "󰓛";
};
"ignored-players" = [ "firefox" ];
}