blob: 624b107e959850dc23a10d43972d8f315c8f1289 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
# Source global X session scripts.
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# Settings
synclient TouchpadOff=1
pactl set-default-source rnnoise_source
bluetooth-autoconnect &
# Services
picom -b &
clipmenud &
xscreensaver --no-splash &
wal -Rq
launch-dunst &
# Desktop
conky -c .config/conky/conkyrc &
slstatus &
while type ~/.local/bin/dwm >/dev/null ; do ~/.local/bin/dwm && continue || break ; done
#~/.local/src/LIVE/dwm/dwm
|