2023-02-06 14:56:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-03-29 14:56:00 +02:00
|
|
|
# Make sure this is before the 'exec' command or it won't be sourced.
|
2023-07-24 22:00:58 +02:00
|
|
|
[ -f /etc/xprofile ] && . /etc/xprofile
|
2023-03-29 14:56:00 +02:00
|
|
|
[ -f ~/.xprofile ] && . ~/.xprofile
|
2023-07-24 22:00:58 +02:00
|
|
|
[ -f ~/.Xresources ] && xrdb -merge -I$HOME ~/.Xresources
|
|
|
|
|
2023-11-16 23:31:15 +01:00
|
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
|
2023-07-24 22:00:58 +02:00
|
|
|
eval "$(dbus-launch --sh-syntax --exit-with-session)"
|
2023-02-06 14:56:13 +01:00
|
|
|
|
2023-02-07 02:16:40 +01:00
|
|
|
feh --bg-center "$HOME/Pictures/bg.png" &
|
2023-02-06 14:56:13 +01:00
|
|
|
|
2023-11-16 23:31:15 +01:00
|
|
|
xautolock -locker lock-us -secure -time 1 &
|
2023-02-06 14:56:13 +01:00
|
|
|
|
2023-06-13 14:16:13 +02:00
|
|
|
#pipewire &
|
|
|
|
dbus-run-session pipewire &
|
2023-05-25 16:20:12 +02:00
|
|
|
pipewire-pulse &
|
2023-07-24 22:00:58 +02:00
|
|
|
wireplumber &
|
|
|
|
|
2023-02-06 14:56:13 +01:00
|
|
|
dwmblocks &
|
|
|
|
|
2023-07-24 22:00:58 +02:00
|
|
|
dbus-launch --sh-syntax --exit-with-session dwm
|
2023-02-07 02:16:40 +01:00
|
|
|
|