This commit is contained in:
@ -15,9 +15,9 @@ in pkgs.stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-m7xh/1uIDh2BM0hTPA5QymXQt6yV7mM7Ivg5VaF2PvM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with pkgs;[ gtk3 sassc ];
|
||||
buildInputs = with pkgs;[ gnome-themes-extra ];
|
||||
propagatedUserEnvPkgs = with pkgs;[ gtk-engine-murrine ];
|
||||
nativeBuildInputs = with pkgs; [ gtk3 sassc ];
|
||||
buildInputs = with pkgs; [ gnome-themes-extra ];
|
||||
propagatedUserEnvPkgs = with pkgs; [ gtk-engine-murrine ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/share/themes
|
||||
@ -94,5 +94,4 @@ in pkgs.stdenv.mkDerivation rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
(include "modules/sys.yuck")
|
||||
(include "modules/net.yuck")
|
||||
(include "modules/systray.yuck")
|
||||
(include "modules/clock.yuck")
|
||||
|
||||
(include "windows/calendar.yuck")
|
||||
@ -26,6 +27,7 @@
|
||||
:valign "end"
|
||||
(sys-mod)
|
||||
(net-mod)
|
||||
(systray-mod)
|
||||
(clock-mod)))
|
||||
|
||||
(defwidget center []
|
||||
|
15
modules/home/wayland/apps/eww/bar/modules/systray.yuck
Normal file
15
modules/home/wayland/apps/eww/bar/modules/systray.yuck
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
(defwidget systray-mod []
|
||||
(module
|
||||
(box
|
||||
:orientation "v"
|
||||
(systray
|
||||
:class "tray"
|
||||
:space-evenly "true"
|
||||
:orientation "v"
|
||||
:icon-size 32
|
||||
:prepend-new "false"
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
Reference in New Issue
Block a user