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;
|
background-color: $green;
|
||||||
color: $background;
|
color: $background;
|
||||||
|
|
||||||
padding-top: 4px;
|
padding-top: 1px;
|
||||||
padding-right: 2px;
|
|
||||||
padding-left: 2px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,15 +46,15 @@
|
||||||
(button
|
(button
|
||||||
:vexpand false
|
:vexpand false
|
||||||
:onclick "playerctl previous"
|
:onclick "playerctl previous"
|
||||||
:class "previous" " ⏪︎")
|
:class "previous" "")
|
||||||
(button
|
(button
|
||||||
:vexpand false
|
:vexpand false
|
||||||
:onclick "playerctl play-pause"
|
:onclick "playerctl play-pause"
|
||||||
:class "playpause" "${music_info.status == "Playing" ? "⏸︎" : "⏵︎"}")
|
:class "playpause" "${music_info.status == "Playing" ? "" : " "}")
|
||||||
(button
|
(button
|
||||||
:vexpand false
|
:vexpand false
|
||||||
:onclick "playerctl next"
|
:onclick "playerctl next"
|
||||||
:class "next" " ⏩︎")
|
:class "next" "")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue