blob: b34e92406f717871c0e85c09b3c741492e046bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
# ~/.config/x11 - run on startx
# error file
ERRFILE="$XDG_CACHE_HOME/X11/xsession-errors"
# daemons
picom --config "$XDG_CONFIG_HOME/picom" &
dunst -conf "$XDG_CONFIG_HOME/dunst" &
nm-applet &
redshift-gtk -c "$XDG_CONFIG_HOME/redshift" &
# wallpaper
xwallpaper --zoom "$XDG_DATA_HOME/wall.png"
# pywal theme
wal -Rn &
# auto-repeat
xset r rate 300 50
# start i3wm
i3 -c "$XDG_CONFIG_HOME/i3"
|