Files
aglab.dotfiles/bin/chbg
SilverAg.L 078c65614b update
- `chbg`: avoid null argument
- `fake-nautilus` overrides.
2025-10-13 10:06:27 +08:00

15 lines
411 B
Bash
Executable File

#!/bin/bash
# to change wallpapers both niri workspace and niri tab view
[ -z "$1" ] && { echo "Usage: $0 <image-file>"; exit 1; }
WP_DIR="$HOME/.local/share"
echo -n "making blurred version... "
mkdir -p $WP_DIR
cp $1 $WP_DIR/.wallpaper
magick $WP_DIR/.wallpaper -filter Gaussian -blur 0x30 $WP_DIR/.wallpaper_blur
echo "Done."
swww img $WP_DIR/.wallpaper
swww img $WP_DIR/.wallpaper_blur --namespace blur