- supress fuzzel runtime warning - make use of `gtklock` (still some issues on `swayidle`) - automatic init kwallet - misc keyboard bindings (and re-implements) - sorry for definition messup (
13 lines
352 B
Bash
Executable File
13 lines
352 B
Bash
Executable File
#!/bin/bash
|
|
# to change wallpapers both niri workspace and niri tab view
|
|
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
|