dotfiles-x11/.local/bin/genwall

19 lines
339 B
Bash
Executable File

#!/bin/sh
# Dependencies:
# convert wal xdotool xwallpaper
wall_dir=~/pix/wall
if [ -z "$1" ]; then
wall="$(find "$wall_dir" -type f -name "*.jpg" -o -name "*.png" | shuf -n1)"
else
wall="$1"
fi
convert "$wall" ~/.local/share/bg.jpg
xwallpaper --zoom ~/.local/share/bg.jpg
wal -c
wal -i ~/.local/share/bg.jpg
xdotool key super+F5