mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
7 lines
139 B
Bash
Executable File
7 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
files=($1/*)
|
|
randomfile=$(printf "%s\n" "${files[RANDOM % ${#files[@]}]}")
|
|
echo $randomfile
|
|
wal -i $randomfile --saturate 1.0
|