Polybar: fix notification icon

This commit is contained in:
Filippo Berto 2023-06-07 10:04:40 +02:00
parent ccaaed552b
commit 41529db79d
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -12,7 +12,7 @@ let
zscroll = "${pkgs.zscroll}/bin/zscroll";
notificationStatus = pkgs.writeShellScript "notificationStatus" ''
PATH=$PATH:"${lib.makeBinPath [ pkgs.dbus ]}"
if [[ `${dunstctl} is-paused` == "true" ]]; then echo 󰂚; else echo 󰂛; fi
if [[ `${dunstctl} is-paused` == "true" ]]; then echo 󰂛; else echo 󰂚; fi
'';
notificationToggle = pkgs.writeShellScript "notificationToggle" ''
PATH=$PATH:"${lib.makeBinPath [ pkgs.dbus ]}"