[eww] Adds delay properly this time. [Shell] Adds some network utilities like lsof and netstat

This commit is contained in:
2026-07-26 21:02:18 -07:00
parent 7aace1daba
commit 62f8ba323e
2 changed files with 4 additions and 1 deletions

View File

@@ -37,7 +37,8 @@
Type = "oneshot";
RemainAfterExit = true;
# Eww won't start right if Hyprland hasn't finished initializing.
ExecStart = "sleep 2 && ${pkgs.eww}/bin/eww open-many ${lib.concatStringsSep " " config.programs.eww.widgets}";
ExecStartPre = "${pkgs.coreutils}/bin/sleep 2";
ExecStart = "${pkgs.eww}/bin/eww open-many ${lib.concatStringsSep " " config.programs.eww.widgets}";
ExecStop = "${pkgs.eww}/bin/eww kill";
};

View File

@@ -18,6 +18,7 @@
htop
btop
psmisc # fuser, killall, pstree
lsof
# Session management
tmux
@@ -45,6 +46,7 @@
# Networking
dnsutils
inetutils
net-tools
socat
xh