Configuration of X11 i3wm tty

This commit is contained in:
2024-07-12 21:16:28 +02:00
parent 7e15fbad29
commit 616255d2c4
29 changed files with 907 additions and 7 deletions

15
i3wm/wallpapers.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
_LINES=$(ps -eo pid,cmd | grep wallpaper | \
grep -v grep | grep -v $$ | awk '{print $1}' | tr '\n' ' ')
for i in $_LINES
do
kill $i
done
while (( $(pgrep i3) ))
do
feh --randomize --bg-max /usr/local/share/wallpapers
sleep 10
done