Manage symlinks with rcm

This commit is contained in:
id101010
2018-09-24 14:32:50 +02:00
parent 6891d81373
commit 56ab081d64
15 changed files with 514 additions and 398 deletions

21
i3/util/wallpapers.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
#######################################################
# _ _ #
# | | | #
# __ ____ _| | |_ __ __ _ _ __ ___ _ __ ___ #
# \ \ /\ / / _` | | | '_ \ / _` | '_ \ / _ \ '__/ __| #
# \ V V / (_| | | | |_) | (_| | |_) | __/ | \__ \ #
# \_/\_/ \__,_|_|_| .__/ \__,_| .__/ \___|_| |___/ #
# | | | | #
# |_| |_| #
#######################################################
PICTURES="$HOME/.wallpapers/"
SHOWTIME="10m"
while true; do
find $PICTURES -type f \( -name '*.jpg' -o -name '*.png' \) -print0 | shuf -n1 -z | xargs -0 feh --bg-scale
sleep $SHOWTIME
done