2024-04-20 10:06:28 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-07-07 23:54:00 -04:00
|
|
|
lib,
|
|
|
|
pkgs,
|
2024-07-09 19:17:53 -04:00
|
|
|
self,
|
2024-04-20 10:06:28 -04:00
|
|
|
...
|
|
|
|
}: let
|
|
|
|
sway-randomWallpaper = pkgs.writeShellScriptBin "sway-randomWallpaper" ''
|
2024-04-26 13:49:44 -04:00
|
|
|
kill `pidof swaybg`
|
|
|
|
|
|
|
|
OLD_PIDS=()
|
2024-07-09 19:17:53 -04:00
|
|
|
directory=${config.xdg.dataHome}/backgrounds
|
2024-04-20 10:06:28 -04:00
|
|
|
|
|
|
|
if [ -d "$directory" ]; then
|
|
|
|
while true; do
|
2024-04-27 22:34:21 -04:00
|
|
|
NEW_PIDS=()
|
2024-04-26 13:49:44 -04:00
|
|
|
|
2024-05-05 19:39:36 -04:00
|
|
|
monitor=`${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} -t get_outputs -p | grep Output | awk '{print $2}'`
|
2024-04-26 13:17:22 -04:00
|
|
|
for m in ''${monitor[@]}; do
|
|
|
|
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1)
|
2024-06-14 22:12:04 -04:00
|
|
|
${lib.getExe pkgs.swaybg} -o $m -i $random_background -m fill &
|
2024-04-27 22:34:21 -04:00
|
|
|
NEW_PIDS+=($!)
|
|
|
|
done
|
|
|
|
|
2024-06-15 11:30:17 -04:00
|
|
|
if [[ ''${OLD_PIDS[@]} -gt 0 ]]; then
|
2024-05-26 15:58:01 -04:00
|
|
|
sleep 5
|
|
|
|
fi
|
2024-04-27 22:34:21 -04:00
|
|
|
|
|
|
|
for pid in ''${OLD_PIDS[@]}; do
|
|
|
|
kill $pid
|
2024-04-26 13:17:22 -04:00
|
|
|
done
|
2024-04-26 13:49:44 -04:00
|
|
|
|
2024-04-27 22:34:21 -04:00
|
|
|
OLD_PIDS=$NEW_PIDS
|
|
|
|
|
|
|
|
sleep 895
|
2024-04-20 10:06:28 -04:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
in {
|
2024-06-26 22:13:02 -04:00
|
|
|
config = lib.mkIf config.ar.home.desktop.sway.randomWallpaper {
|
2024-04-20 10:06:28 -04:00
|
|
|
home.packages = with pkgs; [swaybg sway-randomWallpaper];
|
|
|
|
|
|
|
|
wayland.windowManager.sway.config.startup = [
|
2024-05-05 19:39:36 -04:00
|
|
|
{command = "${lib.getExe sway-randomWallpaper}";}
|
2024-04-20 10:06:28 -04:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|