eww -> music: Changed play/pause and next/previous icons to nerd font icons
This commit is contained in:
parent
c65a17c9c7
commit
4f31131470
2 changed files with 4 additions and 6 deletions
|
@ -39,9 +39,7 @@
|
|||
background-color: $green;
|
||||
color: $background;
|
||||
|
||||
padding-top: 4px;
|
||||
padding-right: 2px;
|
||||
padding-left: 2px;
|
||||
padding-top: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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" "")
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue