From 4f3113147041f0e2bf0a2ecc57a42b7ee4fe6884 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Mon, 19 Feb 2024 19:47:59 +0100 Subject: [PATCH] eww -> music: Changed play/pause and next/previous icons to nerd font icons --- bar/eww/music/style.scss | 4 +--- bar/eww/music/widget.yuck | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/bar/eww/music/style.scss b/bar/eww/music/style.scss index b4a0556..b45fdb2 100644 --- a/bar/eww/music/style.scss +++ b/bar/eww/music/style.scss @@ -39,9 +39,7 @@ background-color: $green; color: $background; - padding-top: 4px; - padding-right: 2px; - padding-left: 2px; + padding-top: 1px; } } } diff --git a/bar/eww/music/widget.yuck b/bar/eww/music/widget.yuck index d9cb380..dcfe7bf 100644 --- a/bar/eww/music/widget.yuck +++ b/bar/eww/music/widget.yuck @@ -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" "󰒭") ) ) )