fixed bug in i3config, fixed symlinks, added backupfunction for old configs

This commit is contained in:
id101010
2016-10-16 15:31:31 +02:00
parent 5427876096
commit 8532117b9e
5 changed files with 124 additions and 63 deletions

10
i3wm/util/wallpapers.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
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