4 lines
189 B
Bash
Executable File
4 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
#if [[ -d ~/.i3/wallOM ]];then feh --bg-scale "`shuf -n1 -e ~/.i3/wallOM/*`";else feh --bg-scale "`shuf -n1 -e ~/.i3/wall/*`";fi;
|
|
feh --bg-scale "$(shuf -n1 -e ~/.i3/wallOM/*)"
|