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