7 lines
258 B
Bash
Executable file
7 lines
258 B
Bash
Executable file
#!/bin/bash
|
|
|
|
img_dir="/home/pogmommy/Pictures/Phone/Rattos/"
|
|
img_list=$( find "${img_dir}" -name "*.jpg" -or -name "*.heic" -or -name "*.png" -or -name "*.HEIC" -or -name "*.JPG" -or -name "*.PNG" )
|
|
|
|
img=$( shuf <<< ${img_list} | head -n 1 )
|
|
feh -F "${img}"
|