22 lines
454 B
Bash
22 lines
454 B
Bash
#!/bin/bash
|
|
|
|
# Make sure this is before the 'exec' command or it won't be sourced.
|
|
# [ -f /etc/xprofile ] && . /etc/xprofile
|
|
[ -f ~/.xprofile ] && . ~/.xprofile
|
|
#[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
|
|
|
|
feh --bg-center "$HOME/Pictures/bg.png" &
|
|
|
|
#xautolock -locker slock -detectsleep -secure -time 10 &
|
|
|
|
#pipewire &
|
|
#pipewire-pulse &
|
|
dwmblocks &
|
|
|
|
|
|
while true; do
|
|
exec dbus-launch --sh-syntax --exit-with-session dwm
|
|
#exec dwm
|
|
done
|
|
|