From d23d78b582d178af424a9e6341fb6c09e39405d6 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 11 Aug 2024 16:23:08 +0200 Subject: [PATCH] chore: move bg changing script to config --- home/scripts/default.nix | 26 ++++++++++++++++++-------- hosts/brontes/home.nix | 1 + 2 files changed, 19 insertions(+), 8 deletions(-) diff --git a/home/scripts/default.nix b/home/scripts/default.nix index fbe1772..2b2f6f0 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -19,14 +19,24 @@ ''; }; - set-background = pkgs.writers.writeFishBin "set-background" ( - builtins.readFile ( - pkgs.fetchurl { - url = "https://codeberg.org/Nydragon/scripts/raw/commit/bb7a40545fa5cfce177cdac009d9f46f4823d360/set_background.fish"; - hash = "sha256-Qoz5nn0tqV6QtsXv9fsOkf3PafL30iO/eIkh8ro6O+c="; - } - ) - ); + set-background = pkgs.writers.writeFishBin "set-background" '' + argparse 'f/file=!test -e "$_flag_value"' -- $argv; or return + + set pids $(pidof swaybg) + + if set -q _flag_file + ${pkgs.swaybg}/bin/swaybg -i "$(find $_flag_file | shuf -n 1)" > /dev/null 2>&1 & + else + ${pkgs.swaybg}/bin/swaybg -i "$(find ~/Pictures/backgrounds | shuf -n 1)" > /dev/null 2>&1 & + end + + sleep 0.5; + + for i in $(string split " " $pids) + echo "killing process $i"; + kill -9 "$i"; + end + ''; nixedit = pkgs.writers.writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR ."; diff --git a/hosts/brontes/home.nix b/hosts/brontes/home.nix index cbd8af2..a451008 100644 --- a/hosts/brontes/home.nix +++ b/hosts/brontes/home.nix @@ -72,6 +72,7 @@ wl-clipboard custom.scripts.nixedit + custom.scripts.set-background ]; }; };