mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
9 lines
127 B
Bash
Executable file
9 lines
127 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
PIDS=$(pgrep -f "swaybg")
|
|
|
|
swaybg -m fill -i $1 &
|
|
|
|
if [ -n "$PIDS" ]; then
|
|
echo "$PIDS" | xargs kill
|
|
fi
|