mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
4 lines
148 B
Bash
4 lines
148 B
Bash
|
#!/usr/bin/env bash
|
||
|
# find "$HOME/Pictures/wallpapers" -type f | shuf -n 1
|
||
|
feh --bg-scale "$(find "$HOME/Pictures/wallpapers" -type f | shuf -n 1)"
|