eww -> music: Changed play/pause and next/previous icons to nerd font icons

This commit is contained in:
GaspardCulis 2024-02-19 19:47:59 +01:00
parent c65a17c9c7
commit 4f31131470
2 changed files with 4 additions and 6 deletions

View file

@ -39,9 +39,7 @@
background-color: $green;
color: $background;
padding-top: 4px;
padding-right: 2px;
padding-left: 2px;
padding-top: 1px;
}
}
}

View file

@ -46,15 +46,15 @@
(button
:vexpand false
:onclick "playerctl previous"
:class "previous" " ⏪︎")
:class "previous" "󰒮")
(button
:vexpand false
:onclick "playerctl play-pause"
:class "playpause" "${music_info.status == "Playing" ? "⏸︎" : "⏵︎"}")
:class "playpause" "${music_info.status == "Playing" ? "󰏤" : " 󰐊"}")
(button
:vexpand false
:onclick "playerctl next"
:class "next" " ⏩︎")
:class "next" "󰒭")
)
)
)