reimplement config dotfiles with templates

This commit is contained in:
SALVI Jérémie
2024-08-15 17:56:06 +02:00
parent 9ae4fdb609
commit d02841fd19
49 changed files with 2451 additions and 219 deletions

14
scripts/wallpapers.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
_LINES=$(pgrep wallpapers.sh)
while read -r line
do
(("$line" != "$$")) && kill "$line"
done <<< "$_LINES"
while (( $(pgrep i3) ))
do
feh --randomize --bg-max /usr/local/share/wallpapers
sleep 10
done