Compare commits

..

No commits in common. "68f2cd8fec3db5627cc6bdfb2db1a59c3c0d11d5" and "466dbad9de9473a4e139d51682de5d1ca3009db2" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View file

@ -163,7 +163,7 @@ in
rofi-wayland
];
wayland.windowManager.hyprland.settings.exec-once = [
"sleep 5 && waybar"
"sleep 2 && waybar"
"wl-paste --watch cliphist store"
];
programs.waybar = {

View file

@ -7,9 +7,6 @@
let
cfg = config.profile.slack;
autostartScript = pkgs.writeShellScriptBin "slack.sh" ''
# do not autostart on weekend
if [ "$(date +%u)" -gt 5 ]; then exit 0; fi
sleep 10; until ${pkgs.unixtools.ping}/bin/ping -c 1 1.1.1.1; do sleep 1; done; slack
'';
inherit (lib.meta) getExe;