first commit

This commit is contained in:
augety 2024-08-18 09:57:41 +08:00
commit d351e1199f
3 changed files with 28 additions and 0 deletions

8
autostart.sh Executable file
View File

@ -0,0 +1,8 @@
fcitx5 &
/bin/bash ~/.dwm/wallpapers.sh rando &
slstatus &
sleep 2
picom &

1
menu.sh Executable file
View File

@ -0,0 +1 @@
rofi -show drun

19
wallpapers.sh Executable file
View File

@ -0,0 +1,19 @@
setup() {
feh --bg-fill --randomize --no-fehbg ~/Pictures/wallpapers/*.png
}
randomize() {
while true; do
setup
sleep 300
done
}
if [ $1 == "setup" ]
then
setup
elif [ $1 == "rando" ]
then
randomize
fi