mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
sway-randomWallpaper = pkgs.writeShellScriptBin "sway-randomWallpaper" ''
|
|
kill `pidof swaybg`
|
|
|
|
OLD_PIDS=()
|
|
directory=${config.home.homeDirectory}/.local/share/backgrounds
|
|
|
|
if [ -d "$directory" ]; then
|
|
while true; do
|
|
NEW_PIDS=()
|
|
|
|
monitor=`${lib.getExe' config.wayland.windowManager.sway.package "swaymsg"} -t get_outputs -p | grep Output | awk '{print $2}'`
|
|
for m in ''${monitor[@]}; do
|
|
random_background=$(ls $directory/*.{png,jpg} | shuf -n 1)
|
|
${lib.getExe pkgs.swaybg} -o $m -i $random_background &
|
|
NEW_PIDS+=($!)
|
|
done
|
|
|
|
sleep 5
|
|
|
|
for pid in ''${OLD_PIDS[@]}; do
|
|
kill $pid
|
|
done
|
|
|
|
OLD_PIDS=$NEW_PIDS
|
|
|
|
sleep 895
|
|
done
|
|
fi
|
|
'';
|
|
in {
|
|
options = {
|
|
alyraffauf.desktop.sway.randomWallpaper =
|
|
lib.mkEnableOption "Enable Sway random wallpaper script.";
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.desktop.sway.randomWallpaper {
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [swaybg sway-randomWallpaper];
|
|
|
|
wayland.windowManager.sway.config.startup = [
|
|
{command = "${lib.getExe sway-randomWallpaper}";}
|
|
];
|
|
};
|
|
}
|