This commit is contained in:
josh
2018-08-26 12:57:57 +03:00
parent 283a41e39a
commit 5c1d7a61c0
70 changed files with 322 additions and 1335 deletions

9
.scripts/wal.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if [ $# -eq 0 ]; then
files=(~/.wallpapers/*)
wal -i ${files[RANDOM % ${#files[@]}]} -a 80
else
wal -i $1 -a 80
fi