fixed bug in i3config, fixed symlinks, added backupfunction for old configs
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
BACKGROUND='#402e2e'
|
||||
FOREGOURND='#978965'
|
||||
SELECTED_BACKGROUND='#808080'
|
||||
SELECTED_FOREGROUND='#ffff00'
|
||||
BACKGROUND="#402e2e"
|
||||
FOREGOURND="#978965"
|
||||
SELECTED_BACKGROUND="#808080"
|
||||
SELECTED_FOREGROUND="#ffff00"
|
||||
|
||||
i3-dmenu-desktop --dmenu='dmenu -i -nb '#402e2e' -nf '#978965' -sb '#808080' -sf '#ffff00' -l 8'
|
||||
|
||||
10
i3wm/util/wallpapers.sh
Executable file
10
i3wm/util/wallpapers.sh
Executable 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
|
||||
|
||||
Reference in New Issue
Block a user