2024-04-20 10:06:28 -04:00
|
|
|
{
|
|
|
|
config,
|
2024-07-07 23:54:00 -04:00
|
|
|
lib,
|
|
|
|
pkgs,
|
2024-04-20 10:06:28 -04:00
|
|
|
...
|
|
|
|
}: let
|
2024-07-21 23:25:10 -04:00
|
|
|
cfg = config.ar.home;
|
|
|
|
swaymsg = lib.getExe' config.wayland.windowManager.sway.package "swaymsg";
|
|
|
|
in {
|
2024-07-23 17:04:23 -04:00
|
|
|
idleD = let
|
|
|
|
timeouts =
|
|
|
|
["timeout 120 '${lib.getExe pkgs.brightnessctl} -s set 10' resume '${lib.getExe pkgs.brightnessctl} -r'"]
|
|
|
|
++ (
|
|
|
|
if cfg.desktop.sway.autoSuspend
|
|
|
|
then ["timeout 600 'sleep 2 && ${lib.getExe' pkgs.systemd "systemctl"} suspend'"]
|
|
|
|
else [
|
|
|
|
"timeout 600 '${lib.getExe pkgs.swaylock}'"
|
|
|
|
"timeout 630 '${swaymsg} \"output * dpms off\"' resume '${swaymsg} \"output * dpms on\"'"
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
beforeSleeps =
|
|
|
|
lib.optionals cfg.desktop.sway.autoSuspend
|
|
|
|
[
|
|
|
|
"before-sleep '${lib.getExe pkgs.playerctl} pause'"
|
|
|
|
"before-sleep '${lib.getExe pkgs.swaylock}'"
|
|
|
|
];
|
|
|
|
in
|
|
|
|
pkgs.writeShellScript "sway-idled"
|
|
|
|
"${lib.getExe pkgs.swayidle} -w ${lib.strings.concatStringsSep " " (timeouts ++ beforeSleeps)}";
|
2024-07-21 23:25:10 -04:00
|
|
|
|
|
|
|
randomWallpaper = pkgs.writeShellScript "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
|
|
|
|
'';
|
|
|
|
}
|